Feat/SW-165 correct labels * feat(SW-165): sort friend transactions and return additional properties * feat(SW-165): Added points being calculated label * feat(SW-165): added transactionDate for transactions without checkinDate * feat(SW-165): Updated description copy for various reward types * feat(SW-165): filter out expired transactions * feat(SW-165): removed Mobile table and unified them into Table instead * feat(SW-165): Added bookingUrl to friend transactions * fix(SW-165): style fixes * fix(SW-165): fix issues from merge * fix(SW-165): remove comment * fix(SW-165): fixed booking urls not being set and smaller fixes * fix(SW-165): added comment regarding 'BALFWD' Approved-by: Michael Zetterberg Approved-by: Christel Westerberg
46 lines
796 B
CSS
46 lines
796 B
CSS
.tr {
|
|
border-bottom: 1px solid var(--Scandic-Brand-Pale-Peach);
|
|
&:last-child {
|
|
border-bottom: none;
|
|
}
|
|
}
|
|
|
|
.td {
|
|
background-color: #fff;
|
|
color: var(--UI-Text-High-contrast);
|
|
padding: var(--Spacing-x2);
|
|
position: relative;
|
|
text-align: left;
|
|
text-wrap: nowrap;
|
|
}
|
|
|
|
.description {
|
|
font-weight: var(--typography-Body-Bold-fontWeight);
|
|
}
|
|
|
|
.addition {
|
|
color: var(--Secondary-Light-On-Surface-Accent);
|
|
}
|
|
|
|
.addition::before {
|
|
color: var(--Secondary-Light-On-Surface-Accent);
|
|
content: "+";
|
|
margin-right: var(--Spacing-x-half);
|
|
}
|
|
|
|
.negation {
|
|
color: var(--Base-Text-Accent);
|
|
}
|
|
|
|
.negation::before {
|
|
color: var(--Base-Text-Accent);
|
|
content: "-";
|
|
margin-right: var(--Spacing-x-half);
|
|
}
|
|
|
|
@media screen and (min-width: 768px) {
|
|
.td {
|
|
padding: var(--Spacing-x3);
|
|
}
|
|
}
|