CSS fixes
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Elias Jansson
2025-05-21 23:09:17 +02:00
parent 3759769ea0
commit 01498edc69
2 changed files with 41 additions and 9 deletions

View File

@@ -228,3 +228,37 @@ h1 {
margin-bottom: 2px;
word-break: break-word;
}
.menu-header {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
max-width: 960px;
margin-bottom: var(--spacing);
}
.menu-header h1 {
font-size: 1.5rem;
color: var(--accent);
margin: 0;
}
.top-buttons {
display: flex;
gap: 8px;
}
.top-buttons button {
background: none;
border: none;
color: var(--text);
font-size: 1.2rem;
padding: 6px;
cursor: pointer;
border-radius: 4px;
transition: background-color 0.2s;
}
.top-buttons button:hover {
background-color: rgba(0, 0, 0, 0.1);
}