mirror of
https://framagit.org/les/gancio.git
synced 2025-01-31 16:42:22 +01:00
add lighter background to editor
This commit is contained in:
parent
d1dd315e79
commit
3e5ffb046a
2 changed files with 18 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue