about summary refs log tree commit diff
path: root/app/javascript/styles/about.scss
diff options
context:
space:
mode:
authorYamagishi Kazutoshi <ykzts@desire.sh>2017-07-30 23:24:18 +0900
committerEugen Rochko <eugen@zeonfederated.com>2017-07-30 16:24:18 +0200
commitf91284d230c261baa6adc1764cad08b561c5ba67 (patch)
tree06114b3091471a471b5bf7851896e208909ce375 /app/javascript/styles/about.scss
parentfeadf7553dbdc4b0db5cabe6c62791232b59f8aa (diff)
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.
Diffstat (limited to 'app/javascript/styles/about.scss')
-rw-r--r--app/javascript/styles/about.scss6
1 files changed, 5 insertions, 1 deletions
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;
       }
     }