41 lines
690 B
CSS
41 lines
690 B
CSS
.closeButton {
|
|
pointer-events: initial;
|
|
box-shadow: var(--button-box-shadow);
|
|
gap: var(--Spacing-x-half);
|
|
display: none !important;
|
|
}
|
|
|
|
.container {
|
|
height: 100%;
|
|
}
|
|
|
|
.filterContainer {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
position: relative;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 10;
|
|
background-color: var(--Base-Surface-Secondary-light-Normal);
|
|
padding: 0 var(--Spacing-x2);
|
|
height: 44px;
|
|
}
|
|
|
|
.filterContainer .closeButton {
|
|
color: var(--UI-Text-High-Contrast);
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.closeButton {
|
|
display: flex !important;
|
|
}
|
|
.filterContainer {
|
|
display: none;
|
|
}
|
|
.container {
|
|
display: flex;
|
|
}
|
|
}
|