Merged in fix/sw-1826-tier-comparison-layout-bug (pull request #1482)

Fix tier comparison on very small screens

* Fix tier comparison on very small screens


Approved-by: Joakim Jäderberg
This commit is contained in:
Anton Gunnarsson
2025-03-05 13:26:19 +00:00
parent bba76e7707
commit 916912a170
2 changed files with 21 additions and 5 deletions

View File

@@ -39,17 +39,19 @@ export function SasTierComparison({
<div className={styles.columnHeaders}> <div className={styles.columnHeaders}>
<Image <Image
alt="Scandic logo" alt="Scandic logo"
height={46} className={styles.scandicImage}
src="/_static/img/scandic-logotype.svg" src="/_static/img/scandic-logotype.svg"
priority height={46}
width={215} width={215}
sizes="100vw"
/> />
<Image <Image
alt="SAS logo" alt="SAS logo"
height={46} className={styles.sasImage}
src="/_static/img/sas/sas-logotype.svg" src="/_static/img/sas/sas-logotype.svg"
priority height={46}
width={215} width={215}
sizes="100vw"
/> />
<ColumnTitle>{tierComparison.scandic_column_title}</ColumnTitle> <ColumnTitle>{tierComparison.scandic_column_title}</ColumnTitle>
<ColumnTitle>{tierComparison.sas_column_title}</ColumnTitle> <ColumnTitle>{tierComparison.sas_column_title}</ColumnTitle>

View File

@@ -92,6 +92,19 @@
place-items: center; place-items: center;
} }
.scandicImage {
max-height: 46px;
max-width: 215px;
height: auto;
width: 100%;
}
.sasImage {
max-height: 40px;
max-width: 215px;
height: auto;
width: 100%;
}
.tierTitles { .tierTitles {
cursor: pointer; cursor: pointer;
padding: var(--Spacing-x-half); padding: var(--Spacing-x-half);
@@ -151,8 +164,9 @@
& > span { & > span {
position: relative; position: relative;
padding: 0 var(--Spacing-x2); padding: 0 var(--Spacing-x1);
background-color: white; background-color: white;
white-space: nowrap;
} }
&::before { &::before {