Skip to content
Snippets Groups Projects
Verified Commit 4d25e164 authored by Isabella Skořepová's avatar Isabella Skořepová
Browse files

Fix search-related bugs

 - Search being always visible on small screens
 - Search window being clickable while hidden
parent a6a4c1a6
No related branches found
No related tags found
No related merge requests found
sass/build
#search.hidden > div{
}
#search {
pointer-events: none;
color: black !important;
......@@ -12,7 +10,7 @@
overflow: hidden;
padding-bottom: 20px;
> div {
pointer-events: all;
pointer-events: none;
display: inline-block;
width: 70.05vw;
max-width: 800px;
......@@ -20,6 +18,7 @@
width: 95vw;
}
> div {
pointer-events: all;
box-shadow: 0 3px 20px rgba(0,0,0,0.19), 0 6px 20px rgba(0,0,0,0.23);
}
}
......@@ -32,10 +31,10 @@
}
#search.hidden > div > div {
left: 85vw;
left: 100vw;
overflow: hidden;
@media #{$medium-and-down} {
left: 95vw;
left: 100vw;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment