71 lines
1.3 KiB
SCSS
71 lines
1.3 KiB
SCSS
.searchResultPage {
|
|
position: relative;
|
|
background-color: #FAFAFA;
|
|
min-height: 100vh;
|
|
|
|
.searchResultFilterWrapper {
|
|
position: sticky;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 5px;
|
|
padding: 5px 15px 10px 15px;
|
|
position: sticky;
|
|
top: -1px;
|
|
background-color: #fafafa;
|
|
z-index: 123;
|
|
|
|
.nut-menu-bar {
|
|
padding: 0;
|
|
}
|
|
|
|
.nut-menu-container-wrap {
|
|
left: -15px;
|
|
}
|
|
|
|
.filterIconWrapper {
|
|
display: flex;
|
|
width: 28px;
|
|
height: 28px;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 10px;
|
|
flex-shrink: 0;
|
|
aspect-ratio: 1/1;
|
|
border-radius: 999px;
|
|
border: 0.5px solid rgba(0, 0, 0, 0.06);
|
|
background: #FFF;
|
|
position: relative;
|
|
|
|
&.active {
|
|
background-color: #000000;
|
|
}
|
|
}
|
|
|
|
.filterIcon {
|
|
width: 14px;
|
|
height: 14px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.filterCount {
|
|
background-color: #000000;
|
|
position: absolute;
|
|
width: 15px;
|
|
height: 15px;
|
|
border: 2px solid #ffffff;
|
|
border-radius: 50%;
|
|
right: -5px;
|
|
bottom: -5px;
|
|
color: #ffffff;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 11px;
|
|
}
|
|
}
|
|
|
|
.menuFilter {
|
|
padding: 0;
|
|
}
|
|
} |