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
31 lines
519 B
CSS
31 lines
519 B
CSS
.contactContainer {
|
|
border-top: 1px solid var(--UI-Grey-30);
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Spacing-x2);
|
|
justify-content: center;
|
|
align-items: center;
|
|
padding-top: var(--Spacing-x5);
|
|
}
|
|
|
|
.contact {
|
|
display: grid;
|
|
gap: var(--Space-x15);
|
|
}
|
|
|
|
.contact > div {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
@media screen and (min-width: 1367px) {
|
|
.contactContainer {
|
|
align-items: start;
|
|
padding-top: var(--Spacing-x2);
|
|
}
|
|
|
|
.contact > div {
|
|
justify-content: start;
|
|
}
|
|
}
|