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
38 lines
758 B
CSS
38 lines
758 B
CSS
.tertiary {
|
|
color: var(--Text-Tertiary);
|
|
}
|
|
|
|
.title {
|
|
color: var(--Text-Tertiary);
|
|
font-weight: var(--Body-Supporting-text-Font-weight-2);
|
|
font-size: var(--Body-Supporting-text-Size);
|
|
margin-right: var(--Spacing-x-half);
|
|
}
|
|
|
|
.titleSubtext {
|
|
color: var(--Text-Tertiary);
|
|
font-size: var(--Body-Supporting-text-Size);
|
|
}
|
|
|
|
.totalContainer {
|
|
border: 1px solid var(--Border-Divider-Subtle);
|
|
border-radius: var(--Spacing-x1);
|
|
padding: var(--Space-x15) var(--Spacing-x2) var(--Spacing-x2)
|
|
var(--Spacing-x2);
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
gap: var(--Space-x15);
|
|
display: flex;
|
|
}
|
|
|
|
.dl {
|
|
display: grid;
|
|
grid-template-columns: auto auto;
|
|
gap: var(--Spacing-x-half);
|
|
padding: 8px 0;
|
|
}
|
|
|
|
.dl dd {
|
|
text-align: right;
|
|
}
|