52 lines
1.0 KiB
CSS
52 lines
1.0 KiB
CSS
.container {
|
|
display: grid;
|
|
grid-template-rows: 1fr min(50px);
|
|
background-color: var(--Base-Surface-Primary-light-Normal);
|
|
border-radius: var(--Corner-Radius-md);
|
|
min-height: 250px;
|
|
margin-bottom: var(--Space-x05);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.titleContainer {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background-color: var(--Scandic-Brand-Pale-Peach);
|
|
}
|
|
|
|
.title {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
text-align: center;
|
|
color: var(--Text-Accent-Primary);
|
|
}
|
|
|
|
.burgundyTitle {
|
|
color: var(--Scandic-Brand-Burgundy);
|
|
}
|
|
|
|
.link {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
/* Styles for new empty upcoming stays design */
|
|
.emptyUpcomingStaysContainer {
|
|
display: flex;
|
|
padding: var(--Space-x6);
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: var(--Space-x3);
|
|
border-radius: var(--Corner-Radius-lg);
|
|
background: var(--Surface-Brand-Primary-1-Default);
|
|
}
|
|
|
|
.heading {
|
|
color: var(--Text-Heading);
|
|
text-align: center;
|
|
}
|