mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-13 20:44:16 +00:00
26 lines
483 B
Plaintext
26 lines
483 B
Plaintext
.drawer {
|
|
.body {
|
|
position: absolute;
|
|
top: 50px;
|
|
|
|
padding: 30px 10px 10px 10px;
|
|
background-color: var(--background-color-primary);
|
|
width: 100%;
|
|
max-width: 700px;
|
|
min-height: 100%;
|
|
border-top-left-radius: 8px;
|
|
border-top-right-radius: 8px;
|
|
}
|
|
|
|
.body::before{
|
|
content: "";
|
|
background-color: var(--background-color-contrast);
|
|
width: 100px;
|
|
height: 8px;
|
|
position: absolute;
|
|
top: 10px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
border-radius: 8px;
|
|
}
|
|
} |