feat(SW-667): read more section to join loyalty sidebar

This commit is contained in:
Chuma McPhoy
2024-10-25 13:55:08 +02:00
parent cf0449ae8e
commit 2fddc503c5
5 changed files with 105 additions and 4 deletions

View File

@@ -0,0 +1,27 @@
.wrapper {
display: flex;
flex-direction: column;
align-items: center;
gap: var(--Spacing-x2);
}
.links {
display: grid;
gap: var(--Spacing-x-one-and-half);
justify-items: center;
}
.link {
display: flex;
align-items: center;
}
@media screen and (min-width: 1367px) {
.wrapper {
align-items: start;
}
.links {
justify-items: start;
}
}