14 lines
259 B
CSS
14 lines
259 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;
|
||
|
}
|
||
|
|
||
|
dialog.Menu::backdrop {
|
||
|
background: none;
|
||
|
}
|