From d161d92f31f68588244d960dfb8914d9b0154b19 Mon Sep 17 00:00:00 2001 From: Alejandro Gomez Date: Thu, 19 Jan 2023 12:43:22 +0100 Subject: [PATCH] adjust note spacing --- src/element/Note.css | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/src/element/Note.css b/src/element/Note.css index 3805c515..3c1e14b4 100644 --- a/src/element/Note.css +++ b/src/element/Note.css @@ -1,12 +1,12 @@ .note { - margin-bottom: 24px; + margin-bottom: 12px; border-radius: 16px; background-color: var(--note-bg); padding: 12px; min-height: 110px; } @media (min-width: 720px) { - .note { padding: 24px; } + .note { margin-bottom: 24px; padding: 24px; } } .note.thread { @@ -45,13 +45,19 @@ .note > .footer { display: flex; flex-direction: row-reverse; - margin-top: 24px; + margin-top: 12px; } .note > .note-creator { - margin-top: 24px; + margin-top: 12px; } +@media (min-width: 720px) { + .note > .footer { margin-top: 24px; } + .note > .note-creator { margin-top: 24px; } +} + + .thread.note { border-bottom-left-radius: 0; border-bottom-right-radius: 0;