From 4fb033b0e28bb1ee33833528e5e415530f145565 Mon Sep 17 00:00:00 2001 From: Webifi Date: Mon, 29 May 2023 18:14:31 -0500 Subject: [PATCH] Let menu scroll on smaller screen devices --- src/app.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app.scss b/src/app.scss index 30ea08b..a65fd05 100644 --- a/src/app.scss +++ b/src/app.scss @@ -33,7 +33,8 @@ padding-right: .5em; } .dropdown-menu { - max-height: calc(100vh - 60px);; + max-height: calc(100vh - 60px); + overflow-y: auto; } }