1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-01-10 00:46:15 +01:00
fab-manager/app/frontend/src/stylesheets/modules/user/user-profile-form.scss

44 lines
670 B
SCSS
Raw Normal View History

2022-04-26 18:05:18 +02:00
.user-profile-form {
display: flex;
flex-direction: row;
.fields-group {
width: 100%;
& > * {
margin-top: 1.5rem;
}
.names, .birth-phone {
display: flex;
flex-direction: row;
.form-input:first-child {
margin-right: 32px;
}
}
.organization-toggle {
p {
font-family: var(--font-text);
font-weight: normal;
font-size: 1.4rem;
line-height: normal;
margin: 0;
}
}
}
&--small {
flex-direction: column;
.names, .birth-phone {
flex-direction: column;
.form-input:first-child {
margin-right: 0;
}
}
}
}