Files
notifications-admin/app/assets/stylesheets/views/users.scss
Chris Hill-Scott 127c381d22 Tidy up layout of letter contact blocks
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.
2017-10-25 11:46:12 +01:00

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;
}
}