1969d82741
* move search bar to top of page * move select inputs below search bar * reduce complexity * default search to zaprank * votes => zaprank --------- Co-authored-by: rleed <rleed1@pm.me> Co-authored-by: Keyan <34140557+huumn@users.noreply.github.com> Co-authored-by: keyan <keyan.kousha+huumn@gmail.com>
38 lines
642 B
CSS
38 lines
642 B
CSS
.searchSection {
|
|
position: sticky;
|
|
top: 0;
|
|
box-shadow: 0 4px 12px -4px hsl(0deg 0% 59% / 10%);
|
|
background-color: var(--bs-body-bg);
|
|
z-index: 1;
|
|
}
|
|
|
|
.searchContainer {
|
|
height: 88px;
|
|
position: relative;
|
|
}
|
|
|
|
.leaveRoom {
|
|
height: 130px !important;
|
|
}
|
|
|
|
.search {
|
|
width: 50px;
|
|
height: 50px;
|
|
border-radius: 25px;
|
|
padding: 0;
|
|
align-items: center;
|
|
justify-content: center;
|
|
display: flex;
|
|
left: auto !important;
|
|
}
|
|
|
|
form>.active {
|
|
display: flex;
|
|
pointer-events: auto;
|
|
flex-flow: row nowrap;
|
|
align-items: center;
|
|
}
|
|
|
|
form>.active :global(.input-group) {
|
|
flex-flow: nowrap;
|
|
} |