36 lines
No EOL
594 B
CSS
36 lines
No EOL
594 B
CSS
.Menu {
|
|
position: fixed;
|
|
border: 1px solid var(--tutu-color-surface-d);
|
|
border-radius: 2px;
|
|
padding: 0;
|
|
max-width: 560px;
|
|
width: max-content;
|
|
box-shadow: var(--tutu-shadow-e8);
|
|
contain: content;
|
|
overscroll-behavior: contain;
|
|
|
|
&.e1 {
|
|
box-shadow: var(--tutu-shadow-e9);
|
|
}
|
|
|
|
&.e2 {
|
|
box-shadow: var(--tutu-shadow-e10);
|
|
}
|
|
|
|
&.e3 {
|
|
box-shadow: var(--tutu-shadow-e11);
|
|
}
|
|
|
|
&.e4 {
|
|
box-shadow: var(--tutu-shadow-e12);
|
|
}
|
|
|
|
&>.container {
|
|
background: var(--tutu-color-surface);
|
|
display: contents;
|
|
}
|
|
}
|
|
|
|
dialog.Menu::backdrop {
|
|
background: none;
|
|
} |