From 815557fae2b994a953abcb51c31de5edca2db95d Mon Sep 17 00:00:00 2001 From: neil Date: Sun, 22 Jan 2023 20:46:53 +0800 Subject: [PATCH] #161 fix popup search result overlapping on other elements --- .../components/SearchPopupResults/SearchPopupResults.svelte | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/gui/src/components/SearchPopupResults/SearchPopupResults.svelte b/modules/gui/src/components/SearchPopupResults/SearchPopupResults.svelte index 67458bd..74189dc 100644 --- a/modules/gui/src/components/SearchPopupResults/SearchPopupResults.svelte +++ b/modules/gui/src/components/SearchPopupResults/SearchPopupResults.svelte @@ -128,10 +128,13 @@ right: 0; background: rgba(0, 0, 0, 0.7); transition: opacity 0.3s ease-in-out; - padding: 36px; opacity: 0%; overflow: hidden; height: 0px; + } + + section.show { + padding: 36px; z-index: 10; }