Skip to content

Commit

Permalink
SHIBUI-876 Fixed issue with long email addresses wrapping
Browse files Browse the repository at this point in the history
  • Loading branch information
rmathis committed Oct 2, 2018
1 parent d161396 commit 85a13c5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ <h3 class="tag tag-success tag-sm my-4">
<tbody>
<tr *ngFor="let contact of resolver.contacts">
<td>{{ contact.name }}</td>
<td>{{ contact.emailAddress }}</td>
<td class="br-word">{{ contact.emailAddress }}</td>
<td>{{ contact.type }}</td>
</tr>
</tbody>
Expand Down
6 changes: 5 additions & 1 deletion ui/src/theme/typography.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,8 @@
font-size: 2.5rem;
font-weight: normal;
line-height: 1.2;
}
}

.br-word {
word-break: break-word;
}

0 comments on commit 85a13c5

Please sign in to comment.