Files
web/apps/scandic-web/components/Sidebar/JoinLoyalty/joinLoyalty.module.css
Erik Tiekstra 88644597df chore: Replaced deprecated Spacing variables with current values
Approved-by: Matilda Landström
2025-11-12 12:56:22 +00:00

45 lines
605 B
CSS

.joinLoyaltyContainer {
display: flex;
flex-direction: column;
gap: var(--Space-x5);
}
.wrapper {
display: grid;
gap: var(--Space-x3);
padding-top: var(--Space-x4);
justify-items: center;
}
article.wrapper .preamble {
text-align: center;
}
.loginContainer {
display: grid;
gap: var(--Space-x2);
justify-items: start;
}
.button {
width: fit-content;
}
.link {
display: flex;
align-items: center;
}
.icon {
align-self: center;
}
@media screen and (min-width: 1367px) {
.wrapper {
justify-items: start;
}
article.wrapper .preamble {
text-align: left;
}
}