Move hamburger menu to top right corner of header

This commit is contained in:
Kato
2026-09-04 20:19:46 +00:00
parent e76f18b0a8
commit 65b31c7d98
2 changed files with 15 additions and 6 deletions
+10 -3
View File
@@ -20,11 +20,18 @@ a:hover { text-decoration: underline; }
.header {
display: flex;
justify-content: center;
justify-content: space-between;
align-items: center;
padding: 24px 0;
padding: 24px 24px;
position: relative;
}
.brand { font-size: 1.75rem; font-weight: 800; display: flex; align-items: center; gap: 12px; }
.header-right {
display: flex;
align-items: center;
gap: 12px;
position: relative;
}
.brand { font-size: 1.75rem; font-weight: 800; display: flex; align-items: center; gap: 12px; position: relative; }
.hamburger-btn {
background: none; border: none; cursor: pointer; padding: 4px;
display: flex; align-items: center; justify-content: center;