ui fixes
This commit is contained in:
parent
a0c0a21cf0
commit
e45e15438b
|
@ -266,7 +266,7 @@
|
||||||
//import { mapState } from "vuex";
|
//import { mapState } from "vuex";
|
||||||
import { createHelpers } from "vuex-map-fields";
|
import { createHelpers } from "vuex-map-fields";
|
||||||
import { fetchStates } from "@/services/util.service";
|
import { fetchStates } from "@/services/util.service";
|
||||||
import { VueTelInput } from "vue3-tel-input";
|
// import { VueTelInput } from "vue3-tel-input";
|
||||||
|
|
||||||
const { mapFields: mapFieldsGuest } = createHelpers({
|
const { mapFields: mapFieldsGuest } = createHelpers({
|
||||||
getterType: "guestInfo/getField",
|
getterType: "guestInfo/getField",
|
||||||
|
@ -316,7 +316,7 @@ export default {
|
||||||
(v) => (v && v.length >= 8) || "Password must be at least 8 characters",
|
(v) => (v && v.length >= 8) || "Password must be at least 8 characters",
|
||||||
],
|
],
|
||||||
}),
|
}),
|
||||||
components: { VueTelInput },
|
components: { },
|
||||||
computed: {
|
computed: {
|
||||||
...mapFieldsGuest([
|
...mapFieldsGuest([
|
||||||
"one",
|
"one",
|
||||||
|
|
|
@ -135,7 +135,7 @@ export default {
|
||||||
padding: 0 0 0 250px;
|
padding: 0 0 0 250px;
|
||||||
}
|
}
|
||||||
.sidebar-router-padding-close {
|
.sidebar-router-padding-close {
|
||||||
margin:0 16px 16px 16px;
|
margin:0 16px 0 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
background-color: #fbfbf5 !important;
|
background-color: #fbfbf5 !important;
|
||||||
border-top: 4px solid #91abc3;
|
border-top: 4px solid #91abc3;
|
||||||
border-bottom: 4px solid #91abc3;
|
border-bottom: 4px solid #91abc3;
|
||||||
|
margin-top: 220px !important;
|
||||||
}
|
}
|
||||||
.text-decoration-none:hover{
|
.text-decoration-none:hover{
|
||||||
color: #2850da;
|
color: #2850da;
|
||||||
|
|
|
@ -1,4 +1,7 @@
|
||||||
.width-250px {
|
.width-250px {
|
||||||
width: 100% !important;
|
width: 100% !important;
|
||||||
}
|
}
|
||||||
|
.myDash{
|
||||||
|
margin-bottom: auto !important;
|
||||||
|
margin-top: 20px;
|
||||||
|
}
|
|
@ -59,8 +59,8 @@
|
||||||
>
|
>
|
||||||
</v-text-field>
|
</v-text-field>
|
||||||
</v-col>
|
</v-col>
|
||||||
|
<div class="d-block d-md-none">-</div>
|
||||||
<div class="pt-7">-</div>
|
<div class="d-none d-md-block myDash">-</div>
|
||||||
|
|
||||||
<v-col cols="12" sm="12" md="6" lg="5">
|
<v-col cols="12" sm="12" md="6" lg="5">
|
||||||
|
|
||||||
|
|
|
@ -5,3 +5,7 @@
|
||||||
background-color: #2850da;
|
background-color: #2850da;
|
||||||
height: 1px;
|
height: 1px;
|
||||||
}
|
}
|
||||||
|
.alert-box-outline{
|
||||||
|
background-color: rgb(248, 220, 220);
|
||||||
|
color: red;
|
||||||
|
}
|
|
@ -27,7 +27,6 @@
|
||||||
prepend-inner-icon="mdi-magnify"
|
prepend-inner-icon="mdi-magnify"
|
||||||
placeholder="Enter Item, Name, Keyword"
|
placeholder="Enter Item, Name, Keyword"
|
||||||
v-model="searchData"
|
v-model="searchData"
|
||||||
|
|
||||||
@input="searchProducts"
|
@input="searchProducts"
|
||||||
hide-details
|
hide-details
|
||||||
variant="underlined"
|
variant="underlined"
|
||||||
|
@ -49,7 +48,7 @@
|
||||||
</v-row>
|
</v-row>
|
||||||
<v-row v-show="cartProductsItem.length == 0">
|
<v-row v-show="cartProductsItem.length == 0">
|
||||||
<v-col>
|
<v-col>
|
||||||
<v-alert class="alert-box-outline" type="error" text dense
|
<v-alert class="alert-box-outline" icon="mdi-alert" text density="compact"
|
||||||
>You have no items in your shopping cart.</v-alert
|
>You have no items in your shopping cart.</v-alert
|
||||||
>
|
>
|
||||||
|
|
||||||
|
|
|
@ -1202,7 +1202,7 @@ import GuestShippingAddressForm from "@/components/retailer/address/GuestShippin
|
||||||
import BillingAddressComponent from "@/components/retailer/address/BillingAddressComponent.vue";
|
import BillingAddressComponent from "@/components/retailer/address/BillingAddressComponent.vue";
|
||||||
import VerifyAddressComponent from "@/components/retailer/address/VerifyAddressComponent.vue";
|
import VerifyAddressComponent from "@/components/retailer/address/VerifyAddressComponent.vue";
|
||||||
import { createHelpers } from "vuex-map-fields";
|
import { createHelpers } from "vuex-map-fields";
|
||||||
import { VueTelInput } from 'vue3-tel-input'
|
// import { VueTelInput } from 'vue3-tel-input'
|
||||||
import {
|
import {
|
||||||
// googleAanalyticsPurchase,
|
// googleAanalyticsPurchase,
|
||||||
// googleAanalyticsCheckout,
|
// googleAanalyticsCheckout,
|
||||||
|
@ -1292,7 +1292,7 @@ export default {
|
||||||
VerifyAddressComponent,
|
VerifyAddressComponent,
|
||||||
GuestShippingAddressForm,
|
GuestShippingAddressForm,
|
||||||
SnackbarComponent,
|
SnackbarComponent,
|
||||||
VueTelInput
|
// VueTelInput
|
||||||
},
|
},
|
||||||
metaInfo() {
|
metaInfo() {
|
||||||
return {
|
return {
|
||||||
|
|
Loading…
Reference in New Issue