fix(SW-2172): update sidepeek buttons to use new ones for accessibility

updated enter details header overlay to match design

updated change room button to use new one for accessibility

other minor fixes to match design
This commit is contained in:
Christian Andolf
2025-05-23 11:16:35 +02:00
parent 39855d3c8a
commit 8e1a83ee7d
6 changed files with 47 additions and 62 deletions

View File

@@ -15,7 +15,12 @@
.wrapper {
position: relative;
background-color: rgba(57, 57, 57, 0.5);
background: linear-gradient(
60deg,
rgb(0 0 0 / 25%) 0%,
rgb(0 0 0 / 50%) 50%,
rgb(0 0 0 / 75%) 100%
);
width: 100dvw;
}
@@ -25,15 +30,15 @@
justify-content: center;
align-items: flex-start;
max-width: var(--max-width-page);
gap: var(--Spacing-x2);
padding: var(--Spacing-x3) 0;
gap: var(--Space-x05);
padding: var(--Space-x3) 0;
margin: 0 auto;
}
.titleContainer {
display: flex;
flex-direction: column;
gap: var(--Spacing-x-half);
gap: var(--Space-x05);
}
.mobileTitle {
@@ -56,20 +61,16 @@
.address {
display: none;
flex-wrap: wrap;
column-gap: var(--Spacing-x-one-and-half);
column-gap: var(--Space-x15);
font-style: normal;
}
.toggle {
padding: 0px !important;
}
@media (min-width: 768px) {
.address {
display: flex;
}
.container {
padding: var(--Spacing-x3) 0;
padding: var(--Space-x3) 0;
}
.mobileTitle {
display: none;
@@ -81,6 +82,6 @@
@media screen and (min-width: 1367px) {
.container {
padding: var(--Spacing-x6) 0;
padding: var(--Space-x6) 0;
}
}