2 Commits

Author SHA1 Message Date
kikin adb08a4b4a mandando llamar en Home 2020-10-27 17:56:33 -06:00
kikin 770c060a7d mandando llamar en Home 2020-10-27 17:55:39 -06:00
3 changed files with 22 additions and 24 deletions
+7 -5
View File
@@ -25,8 +25,6 @@
</div> </div>
</div> </div>
<MainMenu></MainMenu>
</header> </header>
@@ -34,14 +32,18 @@
</template> </template>
<script> <script>
import MainMenu from './MainMenu'
export default { export default {
components: { data() {
MainMenu, return {
}
},
methods: {
} }
} }
</script> </script>
<style scoped> <style scoped>
+7 -12
View File
@@ -12,26 +12,24 @@
:backdrop-variant="variant" :backdrop-variant="variant"
backdrop backdrop
shadow shadow
bg-variant="white" text-variant="primary"
> >
<div class="px-3 mt-3 pt-2 d-flex align-items-center profi-main-text-sty"> <div class="px-3 mt-3 py-2 d-flex align-items-center profi-main-text-sty">
<font-awesome-icon icon="user" class="mr-2" /> <font-awesome-icon icon="user" class="mr-2" />
<a href="#" class="text-decoration-none"> <a href="#" class="text-decoration-none">
<h5 class="my-auto">Iniciar sesión</h5> <h5 class="my-auto">Iniciar sesión</h5>
</a> </a>
</div> </div>
<hr class="mx-3 mb-3">
<h6 class="px-3 pt-4">MAIN LOREM IPSUM</h6> <h6 class="px-3 pt-4 mb-4">MAIN LOREM IPSUM</h6>
<hr class="mx-3 mb-2">
<ul class="px-3"> <ul class="px-3">
<li v-for="item in items" :key="item.mensaje"> <li v-for="item in items" :key="item.mensaje">
<a href="#"> {{ item.mensaje }} </a> <a href="#"> {{ item.mensaje }} </a>
</li> </li>
</ul> </ul>
<h6 class="px-3 mt-5">CONFIGURACIÓN</h6> <h6 class="px-3 my-4">CONFIGURACIÓN</h6>
<hr class="mx-3 mb-2">
<ul class="px-3"> <ul class="px-3">
<li v-for="item in configuracion" :key="item.mensaje"> <li v-for="item in configuracion" :key="item.mensaje">
<a href="#"> {{ item.mensaje }} </a> <a href="#"> {{ item.mensaje }} </a>
@@ -91,14 +89,11 @@ export default {
color: rgba(255, 255, 255, 0.7)!important; color: rgba(255, 255, 255, 0.7)!important;
} }
.profi-main-text-sty, .profi-main-text-sty a { .profi-main-text-sty, .profi-main-text-sty a {
color: #212529!important; color: black!important;
} }
.profi-main-text-sty a:hover{ .profi-main-text-sty a:hover{
color:gray!important; color:gray!important;
transition: 0.2s; transition: 0.2s;
}
.b-sidebar-header-custom {
} }
ul li { ul li {
list-style: none; list-style: none;
@@ -106,7 +101,7 @@ ul li {
} }
ul li a { ul li a {
text-decoration: none; text-decoration: none;
color: #212529!important; color: black!important;
} }
ul li a:hover { ul li a:hover {
color: rgba(0, 0, 0, 0.6)!important; color: rgba(0, 0, 0, 0.6)!important;
+6 -5
View File
@@ -1,9 +1,9 @@
<template> <template>
<div> <div>
<Header></Header> <Header></Header>
<div class="container my-5">
<h1 class="text-center">Home</h1> <Cart></Cart>
</div>
<Footer></Footer> <Footer></Footer>
</div> </div>
</template> </template>
@@ -11,13 +11,14 @@
<script> <script>
import Header from '../components/Header' import Header from '../components/Header'
import Cart from '../components/Cart'
import Footer from '../components/Footer' import Footer from '../components/Footer'
export default { export default {
components: { components: {
Header, Header,
Footer, Cart,
Footer
} }
} }
</script> </script>