diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2019-11-28 11:18:45 +0100 |
---|---|---|
committer | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2019-11-28 11:18:45 +0100 |
commit | 7051b88fd36e56dcfab7b73b80811c93bc1d0921 (patch) | |
tree | fec99da81e654e710a2df1f0cb66cff1c4406a7b /components/NavLink.vue | |
parent | 1b70d2f3c1dbed43317c1da7ed8092daac27168d (diff) | |
parent | e12c489d3ad6111c78c9cb4d4b8ab77b053c49ad (diff) | |
download | puszcza-7051b88fd36e56dcfab7b73b80811c93bc1d0921.tar.gz puszcza-7051b88fd36e56dcfab7b73b80811c93bc1d0921.zip |
Merge remote-tracking branch 'origin/develop' into feature/ranking
Diffstat (limited to 'components/NavLink.vue')
-rw-r--r-- | components/NavLink.vue | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/components/NavLink.vue b/components/NavLink.vue index 253dde9..bb86ef8 100644 --- a/components/NavLink.vue +++ b/components/NavLink.vue @@ -1,6 +1,7 @@ <template> <li class="navlink"> <a v-if="external" class="link" target="_blank" rel="”noopener”" :href="link">{{ name }}</a> + <a v-else-if="pure" class="link" :href="link">{{ name }}</a> <nuxt-link v-else class="link" :to="link">{{ name }}</nuxt-link> </li> </template> @@ -10,7 +11,8 @@ export default { props: { link: String, name: String, - external: { type: Boolean, default: false } + external: { type: Boolean, default: false }, + pure: { type: Boolean, default: false } } } </script> @@ -22,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; @@ -45,6 +48,12 @@ export default { background-color: #ececec !important; } +@media (min-width: 900px) { + .link { + font-weight: normal; + } +} + @media (max-width: 1300px) { .navlink { margin: 0; |