From 5ec37608f1c8b928bcd769a1ed743118616daf83 Mon Sep 17 00:00:00 2001 From: Camille Moussu <66134347+Eriikah@users.noreply.github.com> Date: Wed, 25 Feb 2026 17:40:47 +0100 Subject: [PATCH] [#575] fixed broken paddings (#582) --- src/components/Calendar/Calendar.styl | 16 +++++++++++++++- src/components/Calendar/Calendar.tsx | 6 ++++-- src/components/Calendar/CalendarLayout.tsx | 2 +- src/components/Dialog/ResponsiveDialog.tsx | 11 ++++++++--- src/components/Menubar/Menubar.styl | 2 +- src/features/Settings/SettingsPage.styl | 3 +++ src/features/Settings/SettingsPage.tsx | 6 ++++-- 7 files changed, 36 insertions(+), 10 deletions(-) diff --git a/src/components/Calendar/Calendar.styl b/src/components/Calendar/Calendar.styl index 238a4fe..112801f 100644 --- a/src/components/Calendar/Calendar.styl +++ b/src/components/Calendar/Calendar.styl @@ -7,7 +7,11 @@ .main-layout display flex height calc(100vh - 70px) - + +.main-layout.isInIframe + margin-top 8px + height calc(100vh - 8px) + .main-layout.calendar-layout background-color #fff flex-direction row @@ -17,6 +21,16 @@ height 100% overflow hidden +.main-layout.isInIframe .calendar + display flex + flex-direction column + height 100% + overflow hidden + +.main-layout.isInIframe .fc + flex 1 + min-height 0 + .calendarListHeader padding-top 10px display flex diff --git a/src/components/Calendar/Calendar.tsx b/src/components/Calendar/Calendar.tsx index c403aa6..aab4753 100644 --- a/src/components/Calendar/Calendar.tsx +++ b/src/components/Calendar/Calendar.tsx @@ -599,7 +599,9 @@ export default function CalendarApp({ const { t, lang } = useI18n(); return ( -
+