Merge pull request #171 from teaxyz/bugfix-search-popup

#161 fix popup search result overlapping on other elements
This commit is contained in:
Neil 2023-01-22 21:05:50 +08:00 committed by GitHub
commit 27e4a64d23
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -128,10 +128,13 @@
right: 0; right: 0;
background: rgba(0, 0, 0, 0.7); background: rgba(0, 0, 0, 0.7);
transition: opacity 0.3s ease-in-out; transition: opacity 0.3s ease-in-out;
padding: 36px;
opacity: 0%; opacity: 0%;
overflow: hidden; overflow: hidden;
height: 0px; height: 0px;
}
section.show {
padding: 36px;
z-index: 10; z-index: 10;
} }