tutu/src/material/Menu.css

30 lines
474 B
CSS
Raw Normal View History

2024-10-31 21:50:36 +08:00
.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;
2024-11-03 23:33:37 +08:00
&.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);
}
2024-10-31 21:50:36 +08:00
}
dialog.Menu::backdrop {
background: none;
}