Compare commits
3 Commits
shoppinViews
...
mainMenu
| Author | SHA1 | Date | |
|---|---|---|---|
| 48b20d5c70 | |||
| e2061cc45f | |||
| 7964837e27 |
@@ -25,25 +25,23 @@
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<MainMenu></MainMenu>
|
||||
|
||||
|
||||
</header>
|
||||
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import MainMenu from './MainMenu'
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
||||
components: {
|
||||
MainMenu,
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
</script>
|
||||
<style scoped>
|
||||
|
||||
|
||||
@@ -12,24 +12,26 @@
|
||||
:backdrop-variant="variant"
|
||||
backdrop
|
||||
shadow
|
||||
bg-variant="white" text-variant="primary"
|
||||
>
|
||||
<div class="px-3 mt-3 py-2 d-flex align-items-center profi-main-text-sty">
|
||||
<div class="px-3 mt-3 pt-2 d-flex align-items-center profi-main-text-sty">
|
||||
<font-awesome-icon icon="user" class="mr-2" />
|
||||
<a href="#" class="text-decoration-none">
|
||||
<h5 class="my-auto">Iniciar sesión</h5>
|
||||
</a>
|
||||
</div>
|
||||
<hr class="mx-3 mb-3">
|
||||
|
||||
<h6 class="px-3 pt-4 mb-4">MAIN LOREM IPSUM</h6>
|
||||
|
||||
<h6 class="px-3 pt-4">MAIN LOREM IPSUM</h6>
|
||||
<hr class="mx-3 mb-2">
|
||||
<ul class="px-3">
|
||||
<li v-for="item in items" :key="item.mensaje">
|
||||
<a href="#"> {{ item.mensaje }} </a>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<h6 class="px-3 my-4">CONFIGURACIÓN</h6>
|
||||
|
||||
<h6 class="px-3 mt-5">CONFIGURACIÓN</h6>
|
||||
<hr class="mx-3 mb-2">
|
||||
<ul class="px-3">
|
||||
<li v-for="item in configuracion" :key="item.mensaje">
|
||||
<a href="#"> {{ item.mensaje }} </a>
|
||||
@@ -89,11 +91,14 @@ export default {
|
||||
color: rgba(255, 255, 255, 0.7)!important;
|
||||
}
|
||||
.profi-main-text-sty, .profi-main-text-sty a {
|
||||
color: black!important;
|
||||
color: #212529!important;
|
||||
}
|
||||
.profi-main-text-sty a:hover{
|
||||
color:gray!important;
|
||||
transition: 0.2s;
|
||||
}
|
||||
.b-sidebar-header-custom {
|
||||
|
||||
}
|
||||
ul li {
|
||||
list-style: none;
|
||||
@@ -101,7 +106,7 @@ ul li {
|
||||
}
|
||||
ul li a {
|
||||
text-decoration: none;
|
||||
color: black!important;
|
||||
color: #212529!important;
|
||||
}
|
||||
ul li a:hover {
|
||||
color: rgba(0, 0, 0, 0.6)!important;
|
||||
|
||||
Reference in New Issue
Block a user