Files
web/apps/scandic-web/components/Forms/Edit/Profile/form.module.css
Anton Gunnarsson 8f7c1d80ab Merged in feat/loy-513-update-edit-profile-button-positions (pull request #3447)
feat(LOY-513): Update button positions and simplify css

* Update button positions and simplify css


Approved-by: Matilda Landström
2026-01-16 09:03:44 +00:00

28 lines
411 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;
gap: var(--Space-x1);
}
@media screen and (min-width: 768px) {
.btnContainer {
align-self: center;
flex-direction: row;
gap: var(--Space-x2);
}
}