feat: add scandic icon

This commit is contained in:
Fredrik Thorsson
2024-07-04 14:43:31 +02:00
parent 85232401c8
commit 81034c8f2f
4 changed files with 138 additions and 8 deletions

View File

@@ -1,15 +1,50 @@
.card {
margin-left: 50px;
margin-top: 50px;
display: grid;
grid-template-columns: 1fr min(480px);
min-height: 270px;
max-width: 850px;
background-color: var(--Base-Surface-Primary-Normal);
border: 1px solid black;
border: 1px solid var(--Base-Border-Subtle);
border-radius: var(--Corner-radius-Small);
}
.image {
height: auto;
min-height: 270px;
object-fit: cover;
overflow: hidden;
width: 100%;
}
.information {
display: flex;
flex-direction: column;
gap: var(--Spacing-x2);
padding: var(--Spacing-x2);
}
.title {
display: flex;
flex-direction: column;
gap: var(--Spacing-x1);
}
.description {
display: flex;
flex-direction: column;
gap: var(--Spacing-x1);
font-family: var(--typography-Caption-Regular-fontFamily);
font-size: var(--typography-Caption-Regular-fontSize);
}
.labels {
display: flex;
flex-wrap: wrap;
gap: var(--Spacing-x1);
}
.button {
display: flex;
align-items: center;
justify-content: space-between;
}