From 5de4201fe18dd94b3de2564c33f1bcaff3765ff2 Mon Sep 17 00:00:00 2001 From: Alejandro Gomez Date: Thu, 19 Jan 2023 12:40:38 +0100 Subject: [PATCH] reduce default padding on notes --- src/element/Note.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/element/Note.css b/src/element/Note.css index 701f6fe8a..3805c5152 100644 --- a/src/element/Note.css +++ b/src/element/Note.css @@ -2,9 +2,12 @@ margin-bottom: 24px; border-radius: 16px; background-color: var(--note-bg); - padding: 24px; + padding: 12px; min-height: 110px; } +@media (min-width: 720px) { + .note { padding: 24px; } +} .note.thread { border-bottom: none;