ui fixes
This commit is contained in:
parent
ec8ec82072
commit
c102732b2d
|
@ -7,31 +7,35 @@
|
|||
<v-alert type="error" v-if="!!resetPasswordError">{{resetPasswordError}}</v-alert>
|
||||
<v-alert type="success" v-if="!!resetPasswordMessage">{{resetPasswordMessage}}</v-alert>
|
||||
<v-form ref="resetPassword" v-on:submit.prevent="resetPassword" >
|
||||
<v-text-field v-if="emailTextfield" label="Email Id" class="textfield-border" placeholder="Enter your email id" type="email" ref="email" v-model="email" :rules="emailRules" prepend-icon="mdi-email-outline">
|
||||
<v-text-field v-if="emailTextfield" label="Email Id" variant="underlined" density="compact" class="textfield-border" placeholder="Enter your email id" type="email" ref="email" v-model="email" :rules="emailRules" prepend-icon="mdi-email-outline">
|
||||
</v-text-field>
|
||||
|
||||
<v-text-field
|
||||
type="password"
|
||||
class="textfield-border"
|
||||
class="textfield-border mt-2"
|
||||
label="New Password"
|
||||
ref="newPassword"
|
||||
v-model="newPassword"
|
||||
@click="clear()"
|
||||
:rules="commonValidationRules.passwordRule"
|
||||
required
|
||||
density="compact"
|
||||
variant="underlined"
|
||||
prepend-icon="mdi-lock"
|
||||
>
|
||||
</v-text-field>
|
||||
|
||||
<v-text-field
|
||||
type="password"
|
||||
class="textfield-border"
|
||||
class="textfield-border mt-2"
|
||||
label="Confirm Password"
|
||||
ref="confirmPassword"
|
||||
v-model="confirmPassword"
|
||||
:rules="[passwordConfirmationRule]"
|
||||
prepend-icon="mdi-lock"
|
||||
required
|
||||
variant="underlined"
|
||||
density="compact"
|
||||
>
|
||||
</v-text-field>
|
||||
|
||||
|
|
|
@ -1,15 +1,12 @@
|
|||
<template>
|
||||
<div class="d-flex flex-column height-100">
|
||||
|
||||
<span :class="showMenu ? 'sidebar-router-padding-open' : 'sidebar-router-padding-close'">
|
||||
|
||||
<Header @action="onAction" />
|
||||
</span>
|
||||
|
||||
<v-navigation-drawer
|
||||
v-model="showMenu"
|
||||
v-if="showMenu"
|
||||
:clipped="$vuetify.display.mdAndUp"
|
||||
:permanent="showMenu"
|
||||
color="header-bg-color darken-3"
|
||||
class="header-bg-color text-white pa-4 mt-6"
|
||||
>
|
||||
|
@ -53,7 +50,7 @@
|
|||
</v-row>
|
||||
</v-navigation-drawer>
|
||||
|
||||
<v-content class="mt-10">
|
||||
<v-content class="mt-10" :class="showMenu ? 'sidebar-router-padding-open' : 'sidebar-router-padding-close'">
|
||||
<router-view class="pa-4 mt-10" :class="showMenu ? 'sidebar-router-padding-open' : 'sidebar-router-padding-close'"/>
|
||||
</v-content>
|
||||
<FooterComponent />
|
||||
|
@ -134,11 +131,12 @@ export default {
|
|||
box-shadow: none !important;
|
||||
}
|
||||
.sidebar-router-padding-open {
|
||||
margin:68px 16px 16px 264px;
|
||||
margin:0 130px 16px 132px;
|
||||
}
|
||||
.sidebar-router-padding-close {
|
||||
margin:68px 16px 16px 16px;
|
||||
margin:0 16px 16px 16px;
|
||||
}
|
||||
|
||||
</style>
|
||||
<style lang="scss">
|
||||
|
||||
|
|
|
@ -442,7 +442,7 @@ import MeVerifyAddressComponent from "@/components/retailer/address/MeVerifyAddr
|
|||
import { loginInterrupt } from "@/services/nav";
|
||||
import SnackbarComponent from "@/components/common/SnackbarComponent.vue";
|
||||
import ConfirmationDialog from "@/components/common/ConfirmationDialog.vue";
|
||||
import { VueTelInput } from "vue3-tel-input";
|
||||
import VueTelInput from 'vue-tel-input';
|
||||
//import BillingAddressComponent from "@/components/retailer/address/BillingAddressComponent.vue";
|
||||
|
||||
import { createHelpers } from "vuex-map-fields";
|
||||
|
|
Loading…
Reference in New Issue