Admin dropdown UI fixed
This commit is contained in:
parent
650e8e0e6a
commit
ff1e315fc7
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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=""{{ __('shop::app.customer.account.address.create.phone') }}"">
|
||||
<input value="<?= old('phone'); ?>" type="text" class="control" name="phone" v-validate="'required'" data-vv-as=""{{ __('shop::app.customer.account.address.create.phone') }}"">
|
||||
<span class="control-error" v-if="errors.has('phone')">@{{ errors.first('phone') }}</span>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue