From 8c6384175c8343c0cdc14b4fbefd53127f3f1866 Mon Sep 17 00:00:00 2001 From: Hailey Date: Fri, 11 Oct 2024 08:35:53 -0700 Subject: Fix dropdown shift on web (#5710) --- web/index.html | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'web/index.html') diff --git a/web/index.html b/web/index.html index 2a406429c..7b29597bb 100644 --- a/web/index.html +++ b/web/index.html @@ -80,6 +80,10 @@ top: 50%; transform: translateX(-50%) translateY(-50%) translateY(-50px); } + /* We need this style to prevent web dropdowns from shifting the display when opening */ + body { + width: 100%; + } -- cgit 1.4.1