mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-25 18:38:57 -04:00
Linebreaks are an important part of the letter contact block, and make it easier to read. Bold text works for short pieces of info like email addresses or phone numbers, but is too heavy for the letter contact blocks because they tend to be longer.
28 lines
425 B
SCSS
28 lines
425 B
SCSS
$item-top-padding: $gutter-half;
|
|
|
|
.user-list {
|
|
|
|
@include core-19;
|
|
margin-bottom: $gutter * 1.5;
|
|
|
|
&-item {
|
|
|
|
padding: $item-top-padding 150px $gutter-half 0;
|
|
border-top: 1px solid $border-colour;
|
|
position: relative;
|
|
|
|
&:last-child {
|
|
border-bottom: 1px solid $border-colour;
|
|
}
|
|
|
|
}
|
|
|
|
&-edit-link {
|
|
text-align: right;
|
|
position: absolute;
|
|
top: $item-top-padding;
|
|
right: 0px;
|
|
}
|
|
|
|
}
|