fix(LOY-52): remove spinner on stay cards to prevent loading to spin indefinitely when opening link in a new tab

This commit is contained in:
Christian Andolf
2025-04-28 14:39:59 +02:00
parent a849c48edd
commit 6f585a2c1e
2 changed files with 4 additions and 33 deletions

View File

@@ -2,7 +2,6 @@
outline: 1px solid var(--Base-Border-Subtle);
border-radius: var(--Corner-radius-md);
overflow: hidden;
position: relative;
&:focus,
&:hover {
@@ -25,10 +24,10 @@
.footer {
color: var(--Scandic-Brand-Burgundy);
display: grid;
gap: var(--Spacing-x2);
gap: var(--Space-x2);
margin-top: auto;
overflow: hidden;
padding: var(--Spacing-x2);
padding: var(--Space-x2);
width: 100%;
}
@@ -41,18 +40,5 @@
.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;
gap: var(--Space-x05);
}