From 8c2513eb3d7302afa6a9512c734acf25cce9276d Mon Sep 17 00:00:00 2001 From: Olli <62832771+ollimaz@users.noreply.github.com> Date: Fri, 5 Feb 2021 14:38:32 +0100 Subject: [PATCH] Update style.css for better mobile experience (#1018) This edit hides the dropdown menu while being closed on mobile view --- public/assets/frontend/css/styles.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/public/assets/frontend/css/styles.css b/public/assets/frontend/css/styles.css index ccdfec35..c9a8652c 100644 --- a/public/assets/frontend/css/styles.css +++ b/public/assets/frontend/css/styles.css @@ -130,3 +130,11 @@ border-radius: 5px; width: 250px; } + +/* +* fix the dropdown menu on mobile view +*/ +.dropdown-menu:not(.show) { + display: none; +} +