Files
web/apps/scandic-web/components/Sidebar/JoinLoyalty/ReadMore/readMore.module.css
Linus Flood 7fb95f436b Merged in feat/book-522-align (pull request #3101)
feat(BOOK-522): align items in topmenu, header and booking widget

* feat(BOOK-522): align items in topmenu, header and booking widget

* Delete old css variable and use new

* Fixed underline on icons


Approved-by: Erik Tiekstra
2025-11-07 11:06:56 +00:00

28 lines
361 B
CSS

.wrapper {
display: flex;
flex-direction: column;
align-items: center;
gap: var(--Spacing-x2);
}
.links {
display: grid;
gap: var(--Space-x15);
justify-items: center;
}
.link {
display: flex;
align-items: center;
}
@media screen and (min-width: 1367px) {
.wrapper {
align-items: start;
}
.links {
justify-items: start;
}
}