From e1aea0e44e0463e9de2dd807eafdb357f665bdae Mon Sep 17 00:00:00 2001 From: Kalle <38327916+Sendouc@users.noreply.github.com> Date: Sat, 10 Jan 2026 17:25:55 +0200 Subject: [PATCH] Fix e.g. calendar page overflowing --- app/components/layout/index.module.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/components/layout/index.module.css b/app/components/layout/index.module.css index 47785c6cf..4aa4516cb 100644 --- a/app/components/layout/index.module.css +++ b/app/components/layout/index.module.css @@ -1,5 +1,7 @@ .container { - width: 100%; + flex: 1; + min-width: 0; + overflow-x: hidden; } .header {