23 lines
496 B
CSS
23 lines
496 B
CSS
.drawerOverlay {
|
|
position: fixed;
|
|
inset: 0;
|
|
background-color: rgba(0, 0, 0, 0.4);
|
|
z-index: 101;
|
|
}
|
|
|
|
.drawerContent {
|
|
z-index: 999;
|
|
background-color: var(--mantine-color-body);
|
|
border-top-left-radius: 20px;
|
|
border-top-right-radius: 20px;
|
|
margin-top: 24px;
|
|
height: auto !important;
|
|
min-height: fit-content;
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
outline: none;
|
|
transition: height 0.2s ease-out, max-height 0.2s ease-out;
|
|
}
|