From 42ffe009dcd4ca47d4513c9faec7386a67d1d476 Mon Sep 17 00:00:00 2001 From: rimu <3310831+rimu@users.noreply.github.com> Date: Sun, 22 Dec 2024 15:43:28 +1300 Subject: [PATCH] css tweak --- app/static/styles.css | 7 +++++++ app/static/styles.scss | 9 +++++++++ 2 files changed, 16 insertions(+) diff --git a/app/static/styles.css b/app/static/styles.css index fba2a5a4..6d486083 100644 --- a/app/static/styles.css +++ b/app/static/styles.css @@ -981,6 +981,13 @@ time { height: 44px; line-height: 44px; } +.post_utilities_bar div .dropdown-item { + white-space: unset; + line-height: 30px; +} +.post_utilities_bar div .dropdown-item:active { + line-height: 26px; +} .post_utilities_bar .notify_toggle { margin-left: auto; /* pull right */ } diff --git a/app/static/styles.scss b/app/static/styles.scss index e27be3c6..90cc7304 100644 --- a/app/static/styles.scss +++ b/app/static/styles.scss @@ -581,6 +581,15 @@ time { min-width: $min-touch-target; height: $min-touch-target; line-height: $min-touch-target; + + .dropdown-item { + white-space: unset; + line-height: 30px; + + &:active { + line-height: 26px; + } + } } .notify_toggle {