Feat/SW-1276 implement design * feat(SW-1276) UI implementation Desktop part 1 for MyStay * feat(SW-1276) UI implementation Desktop part 2 for MyStay * feat(SW-1276) UI implementation Mobile part 1 for MyStay * refactor: move files from MyStay/MyStay to MyStay * feat(SW-1276) Sidepeek implementation * feat(SW-1276): Refactoring * feat(SW-1276) UI implementation Mobile part 2 for MyStay * feat(SW-1276): translations * feat(SW-1276) fixed skeleton * feat(SW-1276): Added missing translations * feat(SW-1276): Removed console log * feat(SW-1276) fixed translations * feat(SW-1276): Added translations * feat(SW-1276) fix dynamic ID:s * feat(SW-1276) removed createElement * feat(SW-1276): Fixed build errors * feat(SW-1276): Updated label * feat(SW-1276): Rewrite SummaryCard Approved-by: Niclas Edenvin
53 lines
718 B
CSS
53 lines
718 B
CSS
.card {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: var(--Spacing-x2);
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.card {
|
|
align-items: flex-start;
|
|
flex-direction: row;
|
|
}
|
|
}
|
|
|
|
.image {
|
|
width: 152px;
|
|
height: 152px;
|
|
|
|
border-radius: var(--Corner-radius-Medium);
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.image {
|
|
background-color: var(--Base-Surface-Secondary-light-Normal);
|
|
}
|
|
}
|
|
|
|
.content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
}
|
|
|
|
.topContent {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.bottomContent {
|
|
margin-top: auto;
|
|
}
|
|
|
|
.links {
|
|
display: flex;
|
|
gap: var(--Spacing-x2);
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
.link {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--Spacing-x-half);
|
|
}
|