From 83e9d681d74d1ab8d9e6ee6b58b09b97ea9f90dd Mon Sep 17 00:00:00 2001 From: walster001 Date: Thu, 27 Jun 2024 18:09:51 +0930 Subject: [PATCH] Fix ModernDark Card Alignment Fix cards not showing up properly in ModernDark theme, when more lists are created than will fit on a single screen, inciting a horizontal scrollbar, and then scrolling across trying to open cards. Due to position being absolute, this then opened the card off-screen --- client/components/boards/boardColors.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/components/boards/boardColors.css b/client/components/boards/boardColors.css index cac7fdf05..3189df4b2 100644 --- a/client/components/boards/boardColors.css +++ b/client/components/boards/boardColors.css @@ -1919,8 +1919,8 @@ } @media screen and (min-width: 801px) { .board-color-moderndark .card-details { - position: absolute; - top: 30px; + position: fixed; + top: 97px; left: calc(50% - 384px); width: 768px; max-height: calc(100% - 60px);