mirror of
https://github.com/cinnyapp/cinny.git
synced 2025-11-07 07:40:29 +03:00
34 lines
604 B
SCSS
34 lines
604 B
SCSS
.bottom-sheet-backdrop {
|
|
position: fixed;
|
|
inset: 0;
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
z-index: 1000;
|
|
touch-action: none;
|
|
}
|
|
|
|
.bottom-sheet-container {
|
|
position: fixed;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
z-index: 1001;
|
|
display: flex;
|
|
flex-direction: column;
|
|
max-height: 90vh;
|
|
border-radius: 16px 16px 0 0;
|
|
box-shadow: 0px -4px B16px rgba(0, 0, 0, 0.15);
|
|
}
|
|
|
|
.bottom-sheet-grabber {
|
|
flex-shrink: 0;
|
|
width: 40px;
|
|
height: 5px;
|
|
border-radius: 2.5px;
|
|
background-color: #ccc;
|
|
margin: 8px auto;
|
|
}
|
|
|
|
.bottom-sheet-content {
|
|
overflow-y: auto;
|
|
padding: 0 1rem 1rem 1rem;
|
|
}
|