From d47e20caa6775b83c1a2c36fb718ee4201d3b49a Mon Sep 17 00:00:00 2001 From: Kalle <38327916+Sendouc@users.noreply.github.com> Date: Wed, 26 Nov 2025 17:43:45 +0200 Subject: [PATCH] Better org calendar layout (no more arrows jumping around) --- .../tournament-organization/tournament-organization.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app/features/tournament-organization/tournament-organization.css b/app/features/tournament-organization/tournament-organization.css index 37ef4ac99..87fe4e2a5 100644 --- a/app/features/tournament-organization/tournament-organization.css +++ b/app/features/tournament-organization/tournament-organization.css @@ -3,6 +3,7 @@ grid-template-columns: repeat(7, max-content); gap: var(--s-2); --cell-size: 55px; + overflow-x: auto; } .org__calendar__container { @@ -10,6 +11,7 @@ flex-direction: column; gap: var(--s-2); height: max-content; + overflow-x: visible; } .org__calendar__day-header { @@ -68,12 +70,13 @@ .org__calendar__month-selector { display: flex; align-items: center; + justify-content: space-between; gap: var(--s-2); font-weight: var(--bold); } .org__calendar__month-selector a { - font-size: var(--fonts-lg); + font-size: var(--fonts-xl); } .org__calendar__month-selector > div { @@ -94,7 +97,6 @@ display: flex; flex-direction: column; gap: var(--s-16); - overflow-x: auto; } @media screen and (min-width: 768px) {