Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| adb08a4b4a | |||
| 770c060a7d |
@@ -25,23 +25,25 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<MainMenu></MainMenu>
|
|
||||||
|
|
||||||
|
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import MainMenu from './MainMenu'
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: {
|
data() {
|
||||||
MainMenu,
|
return {
|
||||||
|
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
|
||||||
|
|||||||
@@ -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
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user