Files
web/components/HotelReservation/MyStay/ReferenceCard/referenceCard.module.css
Pontus Dreij 8616e4ab76 Merged in feat/SW-1276-implement-design (pull request #1348)
Feat/SW-1276 implement design

* 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): Removed console log

* feat(SW-1276) fixed translations

* feat(SW-1276): Added translations

* feat(SW-1276) fix dynamic ID:s

* feat(SW-1276) removed createElement

* feat(SW-1276): Fixed build errors

* feat(SW-1276): Updated label

* feat(SW-1276): Rewrite SummaryCard


Approved-by: Niclas Edenvin
2025-02-18 14:20:54 +00:00

45 lines
799 B
CSS

.referenceCard {
width: var(--max-width-content);
max-width: 588px;
margin: 0 auto;
padding: var(--Spacing-x3);
border-radius: var(--Corner-radius-Large);
background-color: var(--Base-Surface-Primary-light-Normal);
box-shadow: 0px 0px 14px 6px rgba(0, 0, 0, 0.1);
}
.referenceRow {
display: flex;
justify-content: space-between;
padding-bottom: var(--Spacing-x-one-and-half);
}
.divider {
margin-bottom: var(--Spacing-x-one-and-half);
}
.actionArea {
display: flex;
gap: var(--Spacing-x3);
margin: var(--Spacing-x4) 0 var(--Spacing-x3);
}
.referenceCard .note {
text-align: center;
width: 80%;
margin: 0 auto;
}
.titleDesktop {
display: none;
}
@media (min-width: 768px) {
.titleMobile {
display: none;
}
.titleDesktop {
display: block;
}
}