mirror of
https://github.com/fleetdm/fleet
synced 2026-05-06 06:48:54 +00:00
29 lines
461 B
SCSS
29 lines
461 B
SCSS
.manage-user {
|
|
.input-field {
|
|
width: 100%;
|
|
}
|
|
|
|
.form-field__label {
|
|
font-size: $x-small;
|
|
font-weight: $bold;
|
|
// so tooltips won't be triggered with whitespace
|
|
display: inline-block;
|
|
}
|
|
|
|
&__email-hint {
|
|
display: block;
|
|
}
|
|
|
|
&__button-wrap {
|
|
width: 100%;
|
|
margin-top: $pad-xxlarge;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
|
|
.button {
|
|
&:last-child {
|
|
margin-left: $pad-medium;
|
|
}
|
|
}
|
|
}
|
|
}
|