diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2019-10-19 23:44:00 +0200 |
---|---|---|
committer | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2019-10-19 23:44:00 +0200 |
commit | 73c108daf3d470d6ebea0ba58d2289d4ffabb84e (patch) | |
tree | da77dd853a996b7e18004723a7157d8f2ff325e5 /components/NavLink.vue | |
parent | f99bfd2a3924b91e1138aa14cfe27aadc5ea0b8d (diff) | |
download | puszcza-73c108daf3d470d6ebea0ba58d2289d4ffabb84e.tar.gz puszcza-73c108daf3d470d6ebea0ba58d2289d4ffabb84e.zip |
Fix navlink font-weight
Diffstat (limited to 'components/NavLink.vue')
-rw-r--r-- | components/NavLink.vue | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/components/NavLink.vue b/components/NavLink.vue index 6074db0..6d72dc7 100644 --- a/components/NavLink.vue +++ b/components/NavLink.vue @@ -24,6 +24,7 @@ export default { font-family: 'Roboto Slab', serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; + font-weight: bold; text-decoration: none; color: #181818; @@ -47,6 +48,12 @@ export default { background-color: #ececec !important; } +@media (min-width: 900px) { + .link { + font-weight: normal; + } +} + @media (max-width: 1300px) { .navlink { margin: 0; |