fix(BOOK-325): Added refetch options to user.name query and refactored header

Approved-by: Linus Flood
Approved-by: Matilda Landström
This commit is contained in:
Erik Tiekstra
2025-11-13 06:33:47 +00:00
parent 3a45e6cfe3
commit c4b564998c
27 changed files with 395 additions and 347 deletions

View File

@@ -1,13 +1,3 @@
@keyframes slide-in {
from {
right: -100vw;
}
to {
right: 0;
}
}
.hamburger {
background-color: transparent;
border: none;
@@ -20,7 +10,7 @@
.bar,
.bar::after,
.bar::before {
background: var(--Base-Text-High-contrast);
background: var(--Icon-Interactive-Default);
border-radius: 2.3px;
display: block;
height: 3px;
@@ -70,7 +60,7 @@
right: auto;
bottom: 0;
width: 100%;
background-color: var(--Base-Surface-Primary-light-Normal);
background-color: var(--Surface-Primary-Default);
transition: right 0.3s;
z-index: var(--menu-overlay-z-index);
}
@@ -90,7 +80,7 @@
}
.footer {
background-color: var(--Base-Surface-Subtle-Normal);
background-color: var(--Surface-Secondary-Default);
padding: var(--Space-x4) var(--Space-x2);
display: grid;
gap: var(--Space-x2);
@@ -102,3 +92,13 @@
display: none;
}
}
@keyframes slide-in {
from {
right: -100vw;
}
to {
right: 0;
}
}