41 lines
886 B
Vue
41 lines
886 B
Vue
<template>
|
|
<div class="navsearch_container container-fluid">
|
|
<NuxtLink to="/busqueda"> Todos</NuxtLink>
|
|
<NuxtLink :to="{ name: 'busqueda', query: { order: 'newest' } }">
|
|
Últimos productos</NuxtLink
|
|
>
|
|
<NuxtLink to="/busqueda"> Más buscados</NuxtLink>
|
|
<NuxtLink to="/c"> Cooperativas</NuxtLink>
|
|
<NuxtLink to="/registro"> Regístrate</NuxtLink>
|
|
</div>
|
|
</template>
|
|
|
|
<script></script>
|
|
|
|
<style lang="scss" scoped>
|
|
.navsearch_container {
|
|
border-bottom: 3px solid $color-grey-nav;
|
|
text-align: center;
|
|
padding: 1.25em 1.25em;
|
|
|
|
@include mobile {
|
|
display: none;
|
|
}
|
|
|
|
a {
|
|
font-size: $m;
|
|
font-weight: $bold;
|
|
color: $color-navy;
|
|
text-decoration: none;
|
|
}
|
|
a:nth-child(1):after,
|
|
a:nth-child(2):after,
|
|
a:nth-child(3):after,
|
|
a:nth-child(4):after {
|
|
color: $color-navy;
|
|
content: '\22EE';
|
|
margin: 0.5rem;
|
|
}
|
|
}
|
|
</style>
|