Files
web/apps/scandic-web/components/Header/MainMenu/MainMenuButton/menuButton.module.css
Erik Tiekstra c4b564998c fix(BOOK-325): Added refetch options to user.name query and refactored header
Approved-by: Linus Flood
Approved-by: Matilda Landström
2025-11-13 06:33:47 +00:00

22 lines
406 B
CSS

.menuButton {
display: flex;
align-items: center;
justify-content: center;
gap: var(--Space-x05);
cursor: pointer;
width: 100%;
background-color: transparent;
color: var(--Text-Interactive-Default);
border-width: 0;
padding: var(--Space-x05) 0;
&:focus-visible {
outline: 2px auto -webkit-focus-ring-color;
outline-offset: 1px;
}
&.loading {
cursor: progress;
}
}