Merged in fix/SW-2342-hotel-side-peek-list-of-ui- (pull request #2566)
fix(SW-2342): Fixed hotel sidepeek UI alignment and color * fix(SW-2342): Fixed hotel sidepeek UI alignment and color * fix(SW-2342): Fixed vertical alignment Approved-by: Anton Gunnarsson Approved-by: Matilda Landström
This commit is contained in:
@@ -63,5 +63,5 @@
|
|||||||
.link {
|
.link {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
font-family: var(--typography-Body-Regular-fontFamily);
|
font-family: var(--typography-Body-Regular-fontFamily);
|
||||||
color: var(--Base-Text-High-contrast);
|
color: var(--Text-Interactive-Secondary);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,12 +1,17 @@
|
|||||||
.wrapper {
|
.wrapper {
|
||||||
padding: var(--Spacing-x1) var(--Spacing-x0);
|
padding: var(--Space-x1) var(--Space-x0);
|
||||||
border-bottom: 1px solid var(--Base-Border-Subtle);
|
border-bottom: 1px solid var(--Base-Border-Subtle);
|
||||||
color: var(--Text-Interactive-Default);
|
color: var(--Text-Interactive-Default);
|
||||||
}
|
}
|
||||||
|
|
||||||
.amenity {
|
.amenity {
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: var(--Spacing-x1);
|
gap: var(--Space-x1);
|
||||||
padding: var(--Spacing-x-one-and-half) var(--Spacing-x1);
|
padding: var(--Space-x15) var(--Space-x1);
|
||||||
align-items: center;
|
}
|
||||||
|
|
||||||
|
.amenityName {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
min-height: var(--Space-x3);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ export default function AdditionalAmenities({
|
|||||||
color="Icon/Interactive/Default"
|
color="Icon/Interactive/Default"
|
||||||
size={24}
|
size={24}
|
||||||
/>
|
/>
|
||||||
{amenity.name}
|
<span className={styles.amenityName}>{amenity.name}</span>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
</Typography>
|
</Typography>
|
||||||
|
|||||||
@@ -58,7 +58,7 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
justify-content: flex-end;
|
justify-content: flex-end;
|
||||||
border-bottom: 1px solid var(--Base-Border-Subtle);
|
border-bottom: 1px solid var(--Base-Border-Subtle);
|
||||||
align-items: center;
|
align-items: start;
|
||||||
padding: var(--Spacing-x4);
|
padding: var(--Spacing-x4);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user