modmapper-web/styles/SearchBar.module.css
Tyler Hallada f99a9cf79b Fix slow re-render of sidebar due to useSWR
Very weird that useSWR is blocking the render in this way. Trusty `requestAnimationFrame` is here to save the day yet again.
2022-08-21 01:54:53 -04:00

69 lines
1.1 KiB
CSS

.search-bar-fixed {
position: fixed;
top: 8px;
width: 150px;
left: calc(50% - 75px);
z-index: 2;
}
.search-bar-fixed.search-bar-focused {
width: max(40vw, 250px);
left: calc(50% - max(20vw, 125px));
}
@media only screen and (min-width: 600px) {
.search-bar-fixed.search-bar-sidebar-open {
left: calc(50% + 75px);
}
.search-bar-fixed.search-bar-focused.search-bar-sidebar-open {
left: calc(50% - max(20vw, 125px) + 125px);
}
}
.search-bar input {
width: 100%;
border-radius: 8px;
padding-left: 8px;
padding-right: 8px;
}
.search-bar-fixed input {
width: 150px;
}
.search-bar-fixed.search-bar-focused input {
width: max(40vw, 250px);
border-radius: 8px;
padding-left: 8px;
padding-right: 8px;
}
.search-results {
background-color: white;
margin-top: 4px;
padding: 4px;
list-style-type: none;
border-radius: 8px;
width: 100%;
}
.search-results li {
padding-top: 2px;
padding-bottom: 2px;
border-top: 1px solid #222222;
cursor: pointer;
}
.search-results li:first-child {
border-top: none;
}
.highlighted-result {
background-color: #bde4ff;
}
.error {
color: red;
}