feat(SW-243): remove height on desktop

This commit is contained in:
Fredrik Thorsson
2024-08-21 11:45:51 +02:00
parent 47c1b763fc
commit f4e63bedca
2 changed files with 4 additions and 2 deletions

View File

@@ -62,7 +62,6 @@
} }
.image { .image {
width: 100%; width: 100%;
height: 100%;
max-height: 195px; max-height: 195px;
} }

View File

@@ -5,6 +5,9 @@
.summary { .summary {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
padding: var(--Spacing-x2) var(--Spacing-x0);
border-bottom: 1px solid var(--Base-Border-Subtle); border-bottom: 1px solid var(--Base-Border-Subtle);
} }
.summary span {
padding: var(--Spacing-x2) var(--Spacing-x0);
}