mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-23 20:01:01 -05:00
41 lines
639 B
SCSS
41 lines
639 B
SCSS
$item-top-padding: $gutter-half;
|
|
|
|
.user-list {
|
|
|
|
@include core-19;
|
|
margin-bottom: $gutter;
|
|
|
|
&-item {
|
|
|
|
padding: $item-top-padding 150px $gutter-half 0;
|
|
border-top: 1px solid $border-colour;
|
|
position: relative;
|
|
|
|
h3 {
|
|
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
color: $secondary-text-colour; // So the ellipsis is grey
|
|
|
|
.heading-small {
|
|
color: $black;
|
|
}
|
|
|
|
}
|
|
|
|
&:last-child {
|
|
border-bottom: 1px solid $border-colour;
|
|
}
|
|
|
|
}
|
|
|
|
&-edit-link {
|
|
text-align: right;
|
|
position: absolute;
|
|
top: $item-top-padding;
|
|
right: 0px;
|
|
}
|
|
|
|
}
|