chore: extract note styles to generic "card" class

This commit is contained in:
2023-01-20 14:21:13 +00:00
parent 50b9694419
commit fd29dcd222
4 changed files with 24 additions and 24 deletions

View File

@ -1,23 +1,7 @@
.note {
margin-bottom: 12px;
border-radius: 16px;
background-color: var(--note-bg);
padding: 12px;
min-height: 110px;
}
@media (min-width: 720px) {
.note { margin-bottom: 24px; padding: 24px; }
}
.note.thread {
border-bottom: none;
}
.note .header {
display: flex;
flex-direction: row;
justify-content: space-between;
}
.note > .header .reply {
font-size: var(--font-size-tiny);
@ -43,12 +27,6 @@
cursor: pointer;
}
.note > .footer {
display: flex;
flex-direction: row-reverse;
margin-top: 12px;
}
.note > .note-creator {
margin-top: 12px;
}