Feat(SW-1275) cancel booking my stay * feat(SW-1276) UI implementation Desktop part 1 for MyStay * feat(SW-1276) UI implementation Desktop part 2 for MyStay * feat(SW-1276) UI implementation Mobile part 1 for MyStay * refactor: move files from MyStay/MyStay to MyStay * feat(SW-1276) Sidepeek implementation * feat(SW-1276): Refactoring * feat(SW-1276) UI implementation Mobile part 2 for MyStay * feat(SW-1276): translations * feat(SW-1276) fixed skeleton * feat(SW-1276): Added missing translations * feat(SW-1276) fixed translations * feat(SW-1275) cancel modal * feat(SW-1275): Mutate cancel booking * feat(SW-1275) added translations * feat(SW-1275) match current cancellationReason * feat(SW-1275) Added modal for manage stay * feat(SW-1275) Added missing icon * feat(SW-1275) New Dont cancel button * feat(SW-1275) Added preperation for Cancellation number * feat(SW-1275): added --modal-box-shadow * feat(SW-1718) Add to calendar * feat(SW-1718) general add to calendar Approved-by: Niclas Edenvin
66 lines
1.1 KiB
CSS
66 lines
1.1 KiB
CSS
@keyframes modal-fade {
|
|
from {
|
|
opacity: 0;
|
|
}
|
|
|
|
to {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.overlay {
|
|
align-items: center;
|
|
background: rgba(0, 0, 0, 0.5);
|
|
display: flex;
|
|
height: var(--visual-viewport-height);
|
|
justify-content: center;
|
|
left: 0;
|
|
position: fixed;
|
|
top: 0;
|
|
width: 100vw;
|
|
z-index: 100;
|
|
|
|
&[data-entering] {
|
|
animation: modal-fade 200ms;
|
|
}
|
|
|
|
&[data-exiting] {
|
|
animation: modal-fade 150ms reverse ease-in;
|
|
}
|
|
}
|
|
|
|
.modal {
|
|
background-color: var(--Base-Surface-Primary-light-Normal);
|
|
border-radius: var(--Corner-radius-Medium);
|
|
box-shadow: var(--modal-box-shadow);
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Spacing-x3);
|
|
max-width: 560px;
|
|
padding: var(--Spacing-x5) var(--Spacing-x4);
|
|
}
|
|
|
|
.header {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Spacing-x2);
|
|
}
|
|
|
|
.footer {
|
|
display: flex;
|
|
flex-direction: column-reverse;
|
|
gap: var(--Spacing-x1);
|
|
}
|
|
|
|
@media screen and (min-width: 768px) {
|
|
.footer {
|
|
align-items: center;
|
|
flex-direction: row;
|
|
gap: var(--Spacing-x2);
|
|
|
|
& > button {
|
|
flex: 1;
|
|
}
|
|
}
|
|
}
|