Feat/SW-2703 mobile price summary improvements * feat(SW-2703): fixes to select rate price summary * feat(SW-2703): fixes enter details summary mobile * fix: z-index issue related to booking widget popover * fix * fix: added accessibility props to overlay div * fix: added button inside header * fix: rename aria button Approved-by: Michael Zetterberg
35 lines
654 B
CSS
35 lines
654 B
CSS
.mobileSummary {
|
|
display: block;
|
|
}
|
|
|
|
@media screen and (max-width: 1366px) {
|
|
.wrapper {
|
|
background-color: var(--Main-Grey-White);
|
|
border-color: var(--Primary-Light-On-Surface-Divider-subtle);
|
|
border-style: solid;
|
|
border-width: 1px;
|
|
border-bottom: none;
|
|
}
|
|
|
|
.signupPromoWrapper {
|
|
position: relative;
|
|
z-index: var(--default-modal-z-index);
|
|
}
|
|
|
|
.overlay {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: var(--Overlay-40);
|
|
z-index: var(--default-modal-overlay-z-index);
|
|
}
|
|
}
|
|
|
|
@media screen and (min-width: 1367px) {
|
|
.mobileSummary {
|
|
display: none;
|
|
}
|
|
}
|