Files
web/apps/scandic-web/components/Blocks/DynamicContent/Stays/StayCard/stay.module.css
2025-04-28 16:41:50 +02:00

59 lines
954 B
CSS

.link {
outline: 1px solid var(--Base-Border-Subtle);
border-radius: var(--Corner-radius-Medium);
overflow: hidden;
position: relative;
&:focus,
&:hover {
outline-offset: 0;
outline: 1.5px solid var(--Base-Border-Hover);
}
}
.stay {
background-color: var(--Main-Grey-White);
}
.image {
min-height: 220px;
object-fit: cover;
overflow: hidden;
width: 100%;
}
.footer {
color: var(--Scandic-Brand-Burgundy);
display: grid;
gap: var(--Spacing-x2);
margin-top: auto;
overflow: hidden;
padding: var(--Spacing-x2);
width: 100%;
}
.hotel {
overflow: hidden;
text-overflow: ellipsis;
text-wrap: nowrap;
}
.date {
align-items: center;
display: flex;
gap: var(--Spacing-x-half);
}
.loadingcontainer {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background: rgb(255 255 255 / 80%);
display: flex;
align-items: center;
justify-content: center;
padding-bottom: 70px;
}