From f3bcab813ae93966f2ffb89586ab04ca284b5d50 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sat, 31 Jan 2026 11:11:01 +0200 Subject: [PATCH] chore(calendar): minor improvements on mobile --- .../src/widgets/collections/calendar/index.css | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/apps/client/src/widgets/collections/calendar/index.css b/apps/client/src/widgets/collections/calendar/index.css index 414478a0df..428d3a66a3 100644 --- a/apps/client/src/widgets/collections/calendar/index.css +++ b/apps/client/src/widgets/collections/calendar/index.css @@ -59,13 +59,19 @@ overflow: hidden; } -.calendar-view .collection-properties .center-container { - justify-content: center; +.calendar-view .collection-properties { + .center-container { + .title { + min-width: 150px; + font-size: 1.2em; + text-align: center; + } + } - .title { - min-width: 150px; - font-size: 1.2em; - text-align: center; + @media (max-width: 991px) { + .center-container { + padding: 0.5em 0; + } } }