Commit 2862a9fb authored by Le Dinh Trung's avatar Le Dinh Trung

fix css

parent 5a4c369d
...@@ -78,4 +78,13 @@ export default { ...@@ -78,4 +78,13 @@ export default {
line-height: 1.2; line-height: 1.2;
color: #fff; color: #fff;
} }
@media only screen and (max-width: 769px) {
.page-title {
font-size: 2.5rem;
}
.page-subtitle {
font-size: 1.5rem;
}
}
</style> </style>
<!-- eslint-disable vue/no-parsing-error --> <!-- eslint-disable vue/no-parsing-error -->
<template> <template>
<v-footer class="mt-12 flex-wrap" min-height="350px" dark padless> <v-footer class="footer-bar mt-12 flex-wrap" dark padless>
<v-row class="d-flex justify-space-between align-center"> <v-row class="d-flex justify-space-between align-center">
<v-col <v-col
cols="12" cols="12"
...@@ -17,13 +17,12 @@ ...@@ -17,13 +17,12 @@
</div> </div>
<v-col <v-col
cols="12" cols="12"
md="4" md="2"
> >
<v-text-field label="email address here ..."></v-text-field> <v-text-field label="email address here ..."></v-text-field>
</v-col> </v-col>
<v-btn color="primary">SUBSCRIBE</v-btn> <v-btn color="primary">SUBSCRIBE</v-btn>
</v-row> </v-row>
<v-divider></v-divider>
</v-footer> </v-footer>
</template> </template>
...@@ -37,4 +36,9 @@ export default { ...@@ -37,4 +36,9 @@ export default {
} }
</script> </script>
<style></style> <style>
.footer-bar {
min-height: 350px;
padding: 4rem;
}
</style>
...@@ -376,12 +376,10 @@ export default { ...@@ -376,12 +376,10 @@ export default {
}, },
updateCart () { updateCart () {
eventBus.$on('add-to-cart', (response) => { eventBus.$on('add-to-cart', (response) => {
console.log('abc')
this.getCardProducts() this.getCardProducts()
}) })
}, },
changeColor () { changeColor () {
console.log('abcd')
this.$vuetify.theme.dark = !this.$vuetify.theme.dark this.$vuetify.theme.dark = !this.$vuetify.theme.dark
} }
} }
......
...@@ -46,7 +46,7 @@ ...@@ -46,7 +46,7 @@
</span> </span>
</div> </div>
</div> </div>
<div class="d-flex align-center "> <div class="none-tag align-center ">
<v-icon>mdi-tag</v-icon> <v-icon>mdi-tag</v-icon>
<span class="mx-2"> <span class="mx-2">
Special offer! Special offer!
...@@ -133,10 +133,18 @@ export default { ...@@ -133,10 +133,18 @@ export default {
min-width: 350px; min-width: 350px;
/* margin-top: 20px; */ /* margin-top: 20px; */
} }
.none-tag {
display: flex;
}
</style> </style>
<style> <style>
div .v-treeview-node__label { div .v-treeview-node__label {
cursor: pointer; cursor: pointer;
} }
@media only screen and (max-width: 769px) {
.none-tag {
display: none !important;
}
}
</style> </style>
...@@ -157,7 +157,12 @@ export default { ...@@ -157,7 +157,12 @@ export default {
border-radius: 1rem; border-radius: 1rem;
} }
@media only screen and (max-width: 768px) { .login-form >svg {
width:50% !important;
height:50% !important;
}
@media only screen and (max-width: 769px) {
.login-form{ .login-form{
width: 80%; width: 80%;
} }
......
...@@ -195,8 +195,6 @@ ...@@ -195,8 +195,6 @@
<v-row> <v-row>
<v-col <v-col
cols="12" cols="12"
sm="6"
md="4"
> >
<v-text-field <v-text-field
v-model="title" v-model="title"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment