30 lines
No EOL
686 B
CSS
30 lines
No EOL
686 B
CSS
.menu {
|
|
--top: 0px;
|
|
--left: 0px;
|
|
background-color: var(--foreground-color);
|
|
position: absolute;
|
|
padding: 0.5rem;
|
|
border-radius: 0.5rem;
|
|
border: var(--highlight-color) solid 0.1rem;
|
|
width: 15rem;
|
|
max-width: 20rem;
|
|
top: var(--top);
|
|
left: calc(var(--left) - 7.5rem);
|
|
z-index: +2;
|
|
}
|
|
|
|
@media (max-width: 1000px) {
|
|
.menu {
|
|
top: unset;
|
|
bottom: 0;
|
|
left: 0;
|
|
position: fixed;
|
|
width: 100vw;
|
|
max-width: 100vw;
|
|
border-bottom: none;
|
|
border-bottom-left-radius: 0;
|
|
border-bottom-right-radius: 0;
|
|
z-index: +26;
|
|
padding-bottom: env(safe-area-inset-bottom);
|
|
}
|
|
} |