From 7f9b9dfea4e8537957678feedac7b1e8cab22039 Mon Sep 17 00:00:00 2001 From: 7heMech <83923848+7heMech@users.noreply.github.com> Date: Thu, 13 Nov 2025 12:06:36 +0200 Subject: [PATCH] Fix for dropdown menus being clipped by table-responsive containers. --- frontend/src/App.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/frontend/src/App.css b/frontend/src/App.css index 59e0ed0c..5ffe3096 100644 --- a/frontend/src/App.css +++ b/frontend/src/App.css @@ -95,3 +95,8 @@ label.row { border-radius: var(--tblr-border-radius) 0 0 var(--tblr-border-radius); } } + +/* Fix for dropdown menus being clipped by table-responsive containers. */ +.table-responsive .dropdown { + position: static; +}