diff --git a/src/Element/Note.css b/src/Element/Note.css index 41fb2f0b..a9b12739 100644 --- a/src/Element/Note.css +++ b/src/Element/Note.css @@ -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; } diff --git a/src/Element/Note.tsx b/src/Element/Note.tsx index 8d5ba8b3..d68d1383 100644 --- a/src/Element/Note.tsx +++ b/src/Element/Note.tsx @@ -115,7 +115,7 @@ export default function Note(props: NoteProps) { } return ( -
+
{content()}
) diff --git a/src/Element/NoteGhost.tsx b/src/Element/NoteGhost.tsx index dec46e2f..6eaa268a 100644 --- a/src/Element/NoteGhost.tsx +++ b/src/Element/NoteGhost.tsx @@ -3,7 +3,7 @@ import ProfileImage from "Element/ProfileImage"; export default function NoteGhost(props: any) { return ( -
+
diff --git a/src/index.css b/src/index.css index 126203d1..38cfe07a 100644 --- a/src/index.css +++ b/src/index.css @@ -84,6 +84,28 @@ code { align-items: center; } +.card { + margin-bottom: 12px; + border-radius: 16px; + background-color: var(--note-bg); + padding: 12px; +} +@media (min-width: 720px) { + .card { margin-bottom: 24px; padding: 24px; } +} + +.card .header { + display: flex; + flex-direction: row; + justify-content: space-between; +} + +.card > .footer { + display: flex; + flex-direction: row-reverse; + margin-top: 12px; +} + .btn { padding: 10px; border-radius: 5px;