From 85a13c54847dfb6796b604d81a219e6ad0cbe3c0 Mon Sep 17 00:00:00 2001 From: Ryan Mathis Date: Tue, 2 Oct 2018 08:46:54 -0700 Subject: [PATCH] SHIBUI-876 Fixed issue with long email addresses wrapping --- .../domain/component/forms/finish-form.component.html | 2 +- ui/src/theme/typography.scss | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ui/src/app/metadata/domain/component/forms/finish-form.component.html b/ui/src/app/metadata/domain/component/forms/finish-form.component.html index 28b9dda91..0e28beacc 100644 --- a/ui/src/app/metadata/domain/component/forms/finish-form.component.html +++ b/ui/src/app/metadata/domain/component/forms/finish-form.component.html @@ -52,7 +52,7 @@

{{ contact.name }} - {{ contact.emailAddress }} + {{ contact.emailAddress }} {{ contact.type }} diff --git a/ui/src/theme/typography.scss b/ui/src/theme/typography.scss index 2e5d717d1..76c9bc107 100644 --- a/ui/src/theme/typography.scss +++ b/ui/src/theme/typography.scss @@ -2,4 +2,8 @@ font-size: 2.5rem; font-weight: normal; line-height: 1.2; -} \ No newline at end of file +} + +.br-word { + word-break: break-word; +}