Skip to content

Instantly share code, notes, and snippets.

@xlanex6
Created October 20, 2020 07:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xlanex6/b7a1cf52a4e0fb7dc8ca5138978514c0 to your computer and use it in GitHub Desktop.
Save xlanex6/b7a1cf52a4e0fb7dc8ca5138978514c0 to your computer and use it in GitHub Desktop.
<template>
<nav>
<nuxt-link to="/">
<img
src="@/assets/images/logo.svg"
alt="logo"
>
</nuxt-link>
<nuxt-link
to="#"
class="button"
>Accueil</nuxt-link>
<nuxt-link
to="#"
class="button"
>Notre histoire</nuxt-link>
<nuxt-link
to="#"
class="button"
>Nos engagements</nuxt-link>
<nuxt-link
to="#"
class="button"
>A propos</nuxt-link>
<nuxt-link
to="#"
class="button"
>Nos produits</nuxt-link>
<nuxt-link
to="#"
class="button"
>Contact</nuxt-link>
</nav>
</template>
<style lang="scss" scoped>
nav {
a {
text-decoration: inherit;
color: inherit;
}
width: 1280px;
margin: auto;
display: flex;
align-items: center;
// font-family: "Neue";
font-weight: bold;
.button {
color: #292724;
font-size: 22px;
text-transform: uppercase;
padding: 0 21px;
border-right: solid 1px grey;
}
.button:last-child {
border-right: none;
}
.button:hover,
.nuxt-link-exact-active {
color: $yellow;
}
img {
height: 128px;
}
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment