33 lines
615 B
CSS
33 lines
615 B
CSS
.container {
|
|
display: grid;
|
|
grid-template-rows: 1fr min(50px);
|
|
background-color: var(--Base-Surface-Primary-light-Normal);
|
|
border-radius: var(--Corner-radius-Medium);
|
|
min-height: 250px;
|
|
margin-bottom: var(--Spacing-x-half);
|
|
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;
|
|
}
|
|
|
|
.burgundyTitle {
|
|
color: var(--Scandic-Brand-Burgundy);
|
|
}
|
|
|
|
.link {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|