From e0c20321b7054ed95f0829e9243224f9449ae320 Mon Sep 17 00:00:00 2001 From: Xiawanggg <115834409+Xiawanggg@users.noreply.github.com> Date: Wed, 29 Nov 2023 14:50:56 +1100 Subject: [PATCH] modify styles.scss and add overrides for table-responsive to fix dropdown menu cutoff on mobile (#12611) Co-authored-by: u7347103 Co-authored-by: Wei Qing <48304907+weiquu@users.noreply.github.com> --- src/web/styles.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/web/styles.scss b/src/web/styles.scss index bd469dd2379..d9fb20ed17c 100644 --- a/src/web/styles.scss +++ b/src/web/styles.scss @@ -313,3 +313,8 @@ label { --bs-navbar-color: rgba(255, 255, 255, .75); --bs-navbar-hover-color: white; } + +// overrides default table-responsive scrolling +.table-responsive { + -webkit-overflow-scrolling: auto; +}