summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJon Ambas <jon@jonambas.com>2017-08-10 11:18:23 -0400
committerJon Ambas <jon@jonambas.com>2017-08-10 11:18:23 -0400
commitf91191e83a3bcbb1ca68c084fc8ce39705f73aeb (patch)
treee978effdd69753255dbfb964b2aa295da05cdef4
parent297ab7b177f8fc4ddc0f836d6d5f9ffea49e6c52 (diff)
downloadmatchbox-f91191e83a3bcbb1ca68c084fc8ce39705f73aeb.zip
matchbox-f91191e83a3bcbb1ca68c084fc8ce39705f73aeb.tar.gz
matchbox-f91191e83a3bcbb1ca68c084fc8ce39705f73aeb.tar.bz2
Fix Tab bug with Link
-rw-r--r--src/components/Tabs/Tabs.module.scss5
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;