Iceshrimp.NET/Iceshrimp.Frontend/Components/Dropdown.razor.css

34 lines
671 B
CSS

.dropdown-menu {
position: absolute;
top: 2.5rem;
left: 1.25rem;
background-color: var(--background-color);
padding: 0.5rem;
border-color: var(--highlight-color);
border-style: solid;
border-width: 0.1rem;
border-radius: 0.5rem;
}
.dropdown-root {
display: inline-block;
padding: 0.5rem 0.75rem;
height: max-content;
line-height: 1;
cursor: pointer;
border-radius: 8px;
}
.dropdown-root:hover {
background-color: var(--hover-color);
}
@media (max-width: 1000px) {
.dropdown-menu {
top: 3.5rem;
left: 0;
position: fixed;
width: 100vw;
max-width: 100vw;
}
}