mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 13:37:30 +00:00
The goal of this PR is to change the layout of the manage users to a table (list view). Move the user actions into the table view. Move EditUserForm into a Modal Update styles for InviteUserForm Edit copy for the configuring SMTP warning.
39 lines
598 B
SCSS
39 lines
598 B
SCSS
.invite-user-form {
|
|
margin-top: 24px;
|
|
|
|
&__radio {
|
|
margin-top: 22px;
|
|
|
|
.kolide-checkbox {
|
|
margin-top: 5px;
|
|
|
|
&__label {
|
|
font-size: 16px;
|
|
font-weight: $regular;
|
|
color: $core-dark-blue-grey;
|
|
padding-left: 32px;
|
|
}
|
|
}
|
|
}
|
|
|
|
&__role {
|
|
color: $core-black;
|
|
font-size: $x-small;
|
|
font-weight: $bold;
|
|
margin: 0;
|
|
}
|
|
|
|
&__btn-wrap {
|
|
display: flex;
|
|
flex-direction: row-reverse;
|
|
}
|
|
|
|
&__btn {
|
|
font-size: $small;
|
|
height: 38px;
|
|
margin-bottom: 5px;
|
|
margin-left: 15px;
|
|
padding: 0;
|
|
width: 120px;
|
|
}
|
|
}
|