Replace deprecated <Body> with <Typography> * chore: replace deprecated body component * refactor: replace Body component with Typography across various components * merge Approved-by: Bianca Widstam Approved-by: Matilda Landström
38 lines
595 B
CSS
38 lines
595 B
CSS
.ancillaryCard {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.imageContainer {
|
|
position: relative;
|
|
width: 100%;
|
|
aspect-ratio: 16/9;
|
|
border-radius: var(--Corner-radius-md);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.image {
|
|
object-fit: cover;
|
|
}
|
|
|
|
.price {
|
|
display: flex;
|
|
gap: var(--Space-x1);
|
|
color: var(--UI-Text-High-contrast);
|
|
}
|
|
|
|
.contentContainer {
|
|
padding: var(--Space-x15) 0 0 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Space-x1);
|
|
}
|
|
|
|
.ancillaryTitle {
|
|
color: var(--UI-Text-High-contrast);
|
|
}
|
|
.ancillaryPoints {
|
|
color: var(--UI-Text-High-contrast);
|
|
text-align: right;
|
|
}
|