diff options
author | Jon Ambas <jon@jonambas.com> | 2017-08-10 11:18:23 -0400 |
---|---|---|
committer | Jon Ambas <jon@jonambas.com> | 2017-08-10 11:18:23 -0400 |
commit | f91191e83a3bcbb1ca68c084fc8ce39705f73aeb (patch) | |
tree | e978effdd69753255dbfb964b2aa295da05cdef4 | |
parent | 297ab7b177f8fc4ddc0f836d6d5f9ffea49e6c52 (diff) | |
download | matchbox-f91191e83a3bcbb1ca68c084fc8ce39705f73aeb.zip matchbox-f91191e83a3bcbb1ca68c084fc8ce39705f73aeb.tar.gz matchbox-f91191e83a3bcbb1ca68c084fc8ce39705f73aeb.tar.bz2 |
Fix Tab bug with Link
-rw-r--r-- | src/components/Tabs/Tabs.module.scss | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/components/Tabs/Tabs.module.scss b/src/components/Tabs/Tabs.module.scss index 5c1713f..6f5c549 100644 --- a/src/components/Tabs/Tabs.module.scss +++ b/src/components/Tabs/Tabs.module.scss @@ -23,7 +23,7 @@ } } -.Tab { +.Tab, a.Tab { position: relative; display: inline-block; padding: rem(15) 0; @@ -31,6 +31,7 @@ color: color(gray, 4); font-size: rem(14); + text-decoration: none; &:after { display: block; @@ -57,7 +58,7 @@ } } -.selected { +.selected, a.selected { color: color(orange); pointer-events: none; |