This commit is contained in:
rakesh 2023-05-13 15:02:43 +05:30
parent 5bc495ccc5
commit 72183bf5f4
3 changed files with 8 additions and 7 deletions

View File

@ -1,6 +1,6 @@
<template> <template>
<v-footer class="py-sm-0 px-sm-0 pb-0 px-0 my-4" > <v-footer padless >
<v-row> <v-row>
<v-col <v-col
class="footer-background-color " class="footer-background-color "

View File

@ -72,14 +72,15 @@
</div> </div>
</v-col> </v-col>
<v-col cols="12" class="float-right" > <v-col cols="12" class="float-right" >
<v-hover v-slot:default="{ hover }"> <v-hover v-slot:default="{ isHovering, props }">
<v-btn <v-btn
:disabled="inProgress" :disabled="inProgress"
block block
x-large x-large
v-bind="props"
:outlined="!inProgress ? hover:false" :outlined="!inProgress ? hover:false"
:color="hover?'white':'primary'" :color="isHovering?'white':'primary'"
:class="hover?'primary--text':'white--text'" :class="isHovering?' text-primary':'text-white'"
class="text-uppercase ls-0 body productpage-button" class="text-uppercase ls-0 body productpage-button"
tile tile
depressed depressed

View File

@ -1,9 +1,9 @@
<template> <template>
<v-container> <v-container>
<v-overlay :value="cartProductsProgress" :opacity="0.2"> <v-overlay v-model="cartProductsProgress" :opacity="0.2" contained class="align-center justify-center">
<v-container> <v-container>
<v-row> <v-row>
<v-col cols="12" class="d-flex justify-center align-center"> <v-col cols="12" >
<v-progress-circular <v-progress-circular
indeterminate indeterminate
size="80" size="80"
@ -36,7 +36,7 @@
> >
</v-text-field> </v-text-field>
</template> </template>
<v-card tile flat v-if="searchData" min-width="500"> <v-card tile flat v-if="searchData" max-width="750">
<RetailerSearchProducts @actionClose="showSnackBarMessage" /> <RetailerSearchProducts @actionClose="showSnackBarMessage" />
</v-card> </v-card>
<v-card v-else > <v-card v-else >