mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-18 21:44:11 -04:00
We’ve moved from three to four permissions. Four permissions don’t fit in the exiting horizontal layout. This commit makes the permissions stack vertically instead. This approach has some downsides: - makes the permissions less easy to scan vertically - makes them take up a lot more space (and at lives services, most of them have somewhere around 15 team members) But I think for now it’s better than any horizontal alternative that I tried.
18 lines
250 B
SCSS
18 lines
250 B
SCSS
.user-list {
|
|
|
|
@include core-19;
|
|
margin-bottom: $gutter * 1.5;
|
|
|
|
&-item {
|
|
|
|
padding: $gutter-half 150px $gutter-half 0;
|
|
border-top: 1px solid $border-colour;
|
|
|
|
&:last-child {
|
|
border-bottom: 1px solid $border-colour;
|
|
}
|
|
|
|
}
|
|
|
|
}
|