fleet/frontend/components/UserRow/_styles.scss
noahtalerman cc0d578b75
Update manage users styles. Implement table (list) view. (#104)
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.
2020-12-08 11:58:19 -08:00

27 lines
400 B
SCSS

.user-row {
&__actions {
.form-field--dropdown {
margin-bottom: 0;
.Select-placeholder {
font-size: $x-small;
}
.Select-input {
font-size: $x-small;
}
.Select-menu-outer {
width: 186px;
transform: translateX(-33%);
}
}
}
@include breakpoint(smalldesk) {
&__position {
display: none;
}
}
}