Don’t wrap users onto multiple lines

It looks cleaner to truncate instead. You can always see the full email
address by clicking into ‘edit’.
This commit is contained in:
Chris Hill-Scott
2018-11-22 10:41:47 +00:00
parent 9147e187fb
commit 8b84bf27e3
2 changed files with 14 additions and 1 deletions

View File

@@ -11,6 +11,19 @@ $item-top-padding: $gutter-half;
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;
}