mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
44 lines
673 B
Plaintext
44 lines
673 B
Plaintext
.app-drawer-overlay {
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
|
|
z-index: 450;
|
|
|
|
background-color: rgba(var(--bg_color_1), 0.4);
|
|
backdrop-filter: blur(1px);
|
|
}
|
|
|
|
.app-drawer-content {
|
|
position: fixed;
|
|
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
|
|
z-index: 550;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
height: fit-content;
|
|
max-height: 90%;
|
|
min-height: 300px;
|
|
|
|
max-width: 550px;
|
|
|
|
padding: 20px 10px 10px 10px;
|
|
|
|
gap: 10px;
|
|
|
|
border-radius: 24px 24px 0 0;
|
|
|
|
background-color: var(--background-color-accent);
|
|
}
|
|
|
|
.app-drawer-handle {
|
|
background-color: var(--background-color-contrast);
|
|
} |