45 lines
605 B
CSS
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;
|
|
}
|
|
}
|