Files
web/apps/scandic-web/components/Forms/Edit/Profile/form.module.css
Anton Gunnarsson adba5f635f Merged in fix/switch-button-order-mobile-edit-profile (pull request #3448)
fix: Switch button order on mobile

* Switch button order on mobile


Approved-by: Matilda Landström
2026-01-19 06:44:08 +00:00

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);
}
}