fix: Switch button order on mobile * Switch button order on mobile Approved-by: Matilda Landström
28 lines
419 B
CSS
28 lines
419 B
CSS
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Space-x3);
|
|
}
|
|
|
|
.welcome {
|
|
color: var(--Text-Accent-Primary);
|
|
}
|
|
|
|
.name {
|
|
color: var(--Text-Interactive-Default);
|
|
}
|
|
|
|
.btnContainer {
|
|
display: flex;
|
|
flex-direction: column-reverse;
|
|
gap: var(--Space-x1);
|
|
}
|
|
|
|
@media screen and (min-width: 768px) {
|
|
.btnContainer {
|
|
align-self: center;
|
|
flex-direction: row;
|
|
gap: var(--Space-x2);
|
|
}
|
|
}
|