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
28 lines
423 B
CSS
28 lines
423 B
CSS
.container {
|
|
display: grid;
|
|
gap: var(--Space-x3);
|
|
max-width: 510px;
|
|
}
|
|
|
|
.content {
|
|
display: grid;
|
|
gap: var(--Space-x1);
|
|
}
|
|
|
|
.card {
|
|
margin-top: var(--Space-x4);
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
grid-template-rows: repeat(3, auto);
|
|
gap: var(--Space-x1);
|
|
}
|
|
|
|
.subTitle {
|
|
grid-column: span 2;
|
|
}
|
|
|
|
.addNewCardText {
|
|
text-decoration: underline;
|
|
color: var(--Scandic-Brand-Burgundy);
|
|
}
|