[frontend/components] Improve menu spacing

This commit is contained in:
pancakes 2025-02-27 13:06:52 +10:00
parent 066e60a1ec
commit 879247bc7c
No known key found for this signature in database
2 changed files with 6 additions and 6 deletions

View file

@ -3,6 +3,9 @@
--left: 0px;
background-color: var(--foreground-color);
position: absolute;
display: flex;
flex-direction: column;
row-gap: 0.2rem;
padding: 0.5rem;
border-radius: 0.5rem;
border: var(--highlight-color) solid 0.1rem;
@ -14,6 +17,8 @@
}
::deep .rule {
align-self: center;
margin: 0;
width: 90%;
color: var(--highlight-color);
border-width: 0.05rem;
@ -27,6 +32,7 @@
bottom: 0;
left: 0;
position: fixed;
row-gap: 0.5rem;
width: 100vw;
max-width: 100vw;
border-bottom: none;

View file

@ -19,9 +19,3 @@
.menu-element.danger {
color: var(--danger-color);
}
@media (max-width: 1000px) {
.menu-element + .menu-element {
margin-top: 1rem;
}
}