mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-01-10 00:46:15 +01:00
44 lines
670 B
SCSS
44 lines
670 B
SCSS
|
.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;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|