mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-28 03:39:29 -04:00
The team page was a bit of a mess: - invited and active tables didn’t line up - lots of things were wrapping onto two lines - the empty fields for when a user didn’t have permissions looked broken This commit splits each row of the table (not actually a table any more) onto two lines. First line has the user’s info, second has their permissions and any associated actions.
17 lines
199 B
SCSS
17 lines
199 B
SCSS
.user-list {
|
|
|
|
@include core-16;
|
|
|
|
&-item {
|
|
|
|
padding: $gutter-half 0;
|
|
border-top: 1px solid $border-colour;
|
|
|
|
&:last-child {
|
|
border-bottom: 1px solid $border-colour;
|
|
}
|
|
|
|
}
|
|
|
|
}
|