add lighter background to editor

This commit is contained in:
lesion 2022-07-23 23:03:49 +02:00
parent d1dd315e79
commit 3e5ffb046a
No known key found for this signature in database
GPG key ID: 352918250B012177
2 changed files with 18 additions and 1 deletions

View file

@ -48,6 +48,23 @@ li {
max-width: 100%;
}
.v-application p {
margin-bottom: 6px;
}
.v-application blockquote {
font-style: italic;
padding: 15px;
}
.editor .content {
background-color: #f7f7f7;
}
.theme--dark .editor .content {
background-color: #333;
}
.theme--dark.v-list {
background-color: #333;
}

View file

@ -2,7 +2,7 @@
v-container
v-card
v-card-text(v-if='$auth.user && $auth.user.is_admin')
Editor(v-model='about' label="About")
Editor.px-3.ma-0(v-model='about' label="About")
v-card-text(v-else v-html='about')
v-card-actions(v-if='$auth.user && $auth.user.is_admin')
v-spacer