106 lines
1.8 KiB
CSS
106 lines
1.8 KiB
CSS
.guestDetails {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
background-color: var(--Main-Brand-PalePeach);
|
|
padding: var(--Space-x3) 0;
|
|
border-radius: var(--Corner-Radius-md);
|
|
gap: var(--Space-x2);
|
|
}
|
|
|
|
.memberLevel {
|
|
align-items: center;
|
|
height: 32px;
|
|
width: fit-content;
|
|
}
|
|
|
|
.memberLevelIcon {
|
|
height: 100%;
|
|
width: fit-content;
|
|
}
|
|
|
|
.rowTitle {
|
|
margin-bottom: var(--Space-x1);
|
|
}
|
|
|
|
.userDetails {
|
|
width: 80%;
|
|
border-bottom: 1px solid var(--Primary-Light-On-Surface-Divider);
|
|
padding-bottom: var(--Space-x3);
|
|
text-align: center;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Space-x1);
|
|
color: var(--Scandic-Brand-Burgundy);
|
|
align-items: center;
|
|
}
|
|
|
|
.totalPoints {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
gap: var(--Space-x1);
|
|
justify-content: space-between;
|
|
padding-top: var(--Space-x3);
|
|
}
|
|
|
|
.totalPointsText {
|
|
display: flex;
|
|
gap: var(--Space-x15);
|
|
align-items: center;
|
|
}
|
|
|
|
.guest {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: var(--Space-x05);
|
|
}
|
|
|
|
.memberNumber {
|
|
color: var(--Scandic-Brand-Burgundy);
|
|
}
|
|
.contactInfoMobile {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Space-x05);
|
|
text-align: center;
|
|
}
|
|
|
|
.contactInfoDesktop {
|
|
display: none;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.guest {
|
|
align-items: flex-start;
|
|
}
|
|
.memberLevel {
|
|
height: 24px;
|
|
align-items: flex-start;
|
|
}
|
|
.userDetails {
|
|
width: 100%;
|
|
border-bottom: none;
|
|
padding: 0;
|
|
align-items: flex-start;
|
|
}
|
|
.guestDetails {
|
|
align-items: flex-start;
|
|
padding: var(--Space-x3) var(--Space-x15);
|
|
}
|
|
.contactInfoMobile,
|
|
.userDetailsTitle {
|
|
display: none;
|
|
}
|
|
.contactInfoDesktop {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Space-x05);
|
|
}
|
|
.totalPoints {
|
|
padding: var(--Space-x15) 0;
|
|
justify-content: flex-start;
|
|
}
|
|
}
|