From 385acb08fd24eff3dac4d1f029817ceb28597f4e Mon Sep 17 00:00:00 2001 From: "Tom (plebeius.eth)" Date: Wed, 4 Sep 2024 16:47:28 +0200 Subject: [PATCH] fix(board buttons): buttons would wrap incorrectly on small window width --- src/components/board-buttons/board-buttons.module.css | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/components/board-buttons/board-buttons.module.css b/src/components/board-buttons/board-buttons.module.css index 68e2416b..8eb8fcab 100644 --- a/src/components/board-buttons/board-buttons.module.css +++ b/src/components/board-buttons/board-buttons.module.css @@ -29,9 +29,6 @@ } .desktopBoardButtons { - display: flex; - align-items: center; - justify-content: space-between; /* Ensure elements are spaced out properly */ padding-right: 5px; } @@ -42,9 +39,7 @@ } .desktopBoardButtons .rightSideButtons { - margin-left: auto; /* Push the right-side buttons to the right */ - display: flex; - align-items: center; + float: right; } .desktopBoardButtons .rightSideButtons select {