From f91284d230c261baa6adc1764cad08b561c5ba67 Mon Sep 17 00:00:00 2001 From: Yamagishi Kazutoshi Date: Sun, 30 Jul 2017 23:24:18 +0900 Subject: Do not create empty a element when there is no e-mail (#4455) Empty a element is created when there is no business e-mail input. --- app/javascript/styles/about.scss | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'app/javascript/styles/about.scss') diff --git a/app/javascript/styles/about.scss b/app/javascript/styles/about.scss index 1c5f13e32..d409c8214 100644 --- a/app/javascript/styles/about.scss +++ b/app/javascript/styles/about.scss @@ -147,9 +147,13 @@ white-space: nowrap; overflow: hidden; - a { + a, + span { font-weight: 400; color: lighten($ui-base-color, 34%); + } + + a { text-decoration: none; } } -- cgit