From e112c56fc6390a1fb5ed5f0f54567f504a3313fe Mon Sep 17 00:00:00 2001 From: Ben Floyd Date: Sat, 3 May 2025 14:33:21 -0600 Subject: [PATCH] make sure calendar appears when there is note content --- styles.css | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/styles.css b/styles.css index 7094f96..f92dfa6 100644 --- a/styles.css +++ b/styles.css @@ -120,6 +120,20 @@ margin-right: 8px; } +/* Mobile-specific positioning for the calendar widget */ +.is-mobile .stream-calendar-widget { + position: absolute; + top: 32px; + right: 0; + z-index: 1000; + font-size: 12px; + margin-right: 0; +} + +.is-phone .stream-calendar-widget { + font-size: 11px; +} + .streams-create-file-container .stream-calendar-widget { position: fixed; top: 80px;