54 lines
986 B
CSS
54 lines
986 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;
|
|
}
|
|
|
|
.backToTopButton {
|
|
display: none;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.closeButton {
|
|
display: flex !important;
|
|
}
|
|
.filterContainerCloseButton {
|
|
display: none !important;
|
|
}
|
|
.backToTopButton {
|
|
position: fixed;
|
|
bottom: 24px;
|
|
left: 32px;
|
|
display: flex;
|
|
}
|
|
.listingContainer {
|
|
background-color: var(--Base-Surface-Secondary-light-Normal);
|
|
padding: var(--Spacing-x3) var(--Spacing-x4);
|
|
overflow-y: auto;
|
|
min-width: 420px;
|
|
position: relative;
|
|
}
|
|
.container {
|
|
display: flex;
|
|
}
|
|
}
|