Admin dropdown UI fixed

This commit is contained in:
Aayush Bhatt 2020-02-06 12:26:35 +05:30
parent 650e8e0e6a
commit ff1e315fc7
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ body {
height: 60px;
background-color: $navbar-top-background;
font-size: 0;
@include box-shadow(0 3px 6px 0 #0000000d);
@include box-shadow(0 3px 6px 0 rgba(0, 0, 0, 0.05));
border-bottom: 1px solid $border-color;
position: fixed;
left: 0;

View File

@ -87,7 +87,7 @@
<div class="control-group" :class="[errors.has('phone') ? 'has-error' : '']">
<label for="phone" class="required">{{ __('shop::app.customer.account.address.create.phone') }}</label>
<input value="<?= old('phone'); ?>" type="text" class="control" name="phone" v-validate="'required|numeric'" data-vv-as="&quot;{{ __('shop::app.customer.account.address.create.phone') }}&quot;">
<input value="<?= old('phone'); ?>" type="text" class="control" name="phone" v-validate="'required'" data-vv-as="&quot;{{ __('shop::app.customer.account.address.create.phone') }}&quot;">
<span class="control-error" v-if="errors.has('phone')">@{{ errors.first('phone') }}</span>
</div>