Iceshrimp.NET/Iceshrimp.Frontend/Components/Menu.razor.css
2025-03-21 13:30:56 +10:00

38 lines
No EOL
825 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;
}
::deep .rule {
width: 90%;
color: var(--highlight-color);
border-width: 0.05rem;
border-style: solid;
cursor: auto;
}
@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);
}
}