优化字体与前台地址等
This commit is contained in:
parent
c1465b321c
commit
088234a922
|
|
@ -4,8 +4,8 @@
|
|||
src: url("/fonts/poppins/Poppins-Regular.ttf");
|
||||
}
|
||||
@font-face {
|
||||
font-family: "poppins-bold";
|
||||
src: url("/fonts/poppins/Poppins-Bold.ttf");
|
||||
font-family: "Poppins-Medium";
|
||||
src: url("/fonts/poppins/Poppins-Medium.ttf");
|
||||
}
|
||||
.min-h1 {
|
||||
min-height: 100px;
|
||||
|
|
@ -538,7 +538,7 @@ body.page-seller-product .share-link-pop .share-links-code img {
|
|||
}
|
||||
|
||||
table.table thead th, .fw-bold, h1, h2, h3, h4, h5, h6, b, strong, .card .card-header {
|
||||
font-family: "poppins-bold", sans-serif;
|
||||
font-family: "Poppins-Medium", sans-serif;
|
||||
}
|
||||
|
||||
[v-cloak] {
|
||||
|
|
|
|||
|
|
@ -25,8 +25,8 @@ body[class^=page-account-] {
|
|||
src: url("/fonts/poppins/Poppins-Regular.ttf");
|
||||
}
|
||||
@font-face {
|
||||
font-family: "poppins-bold";
|
||||
src: url("/fonts/poppins/Poppins-Bold.ttf");
|
||||
font-family: "Poppins-Medium";
|
||||
src: url("/fonts/poppins/Poppins-Medium.ttf");
|
||||
}
|
||||
.min-h1 {
|
||||
min-height: 100px;
|
||||
|
|
@ -499,7 +499,7 @@ body[class^=page-account-] {
|
|||
}
|
||||
|
||||
table.table thead th, .fw-bold, h1, h2, h3, h4, h5, h6, b, strong, .card .card-header {
|
||||
font-family: "poppins-bold", sans-serif;
|
||||
font-family: "Poppins-Medium", sans-serif;
|
||||
}
|
||||
|
||||
header {
|
||||
|
|
|
|||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -12,8 +12,8 @@
|
|||
src: url('/fonts/poppins/Poppins-Regular.ttf');
|
||||
}
|
||||
|
||||
@font-face {font-family: 'poppins-bold';
|
||||
src: url('/fonts/poppins/Poppins-Bold.ttf');
|
||||
@font-face {font-family: 'Poppins-Medium';
|
||||
src: url('/fonts/poppins/Poppins-Medium.ttf');
|
||||
}
|
||||
|
||||
@for $i from 1 through 6 {
|
||||
|
|
@ -322,5 +322,5 @@ body.page-seller-product {
|
|||
}
|
||||
|
||||
table.table thead th, .fw-bold, h1,h2,h3, h4, h5, h6, b, strong, .card .card-header {
|
||||
font-family: 'poppins-bold', sans-serif;
|
||||
font-family: 'Poppins-Medium', sans-serif;
|
||||
}
|
||||
|
|
@ -12,8 +12,8 @@ body[class^="page-account-"] {
|
|||
src: url('/fonts/poppins/Poppins-Regular.ttf');
|
||||
}
|
||||
|
||||
@font-face {font-family: 'poppins-bold';
|
||||
src: url('/fonts/poppins/Poppins-Bold.ttf');
|
||||
@font-face {font-family: 'Poppins-Medium';
|
||||
src: url('/fonts/poppins/Poppins-Medium.ttf');
|
||||
}
|
||||
|
||||
@for $i from 1 through 6 {
|
||||
|
|
@ -257,5 +257,5 @@ body[class^="page-account-"] {
|
|||
|
||||
|
||||
table.table thead th, .fw-bold, h1,h2,h3, h4, h5, h6, b, strong, .card .card-header {
|
||||
font-family: 'poppins-bold', sans-serif;
|
||||
font-family: 'Poppins-Medium', sans-serif;
|
||||
}
|
||||
|
|
@ -35,7 +35,10 @@
|
|||
<div class="zipcode">@{{ address.zipcode }}</div>
|
||||
<div class="address-info">@{{ address.country }} @{{ address.zone }} @{{ address.city }} @{{ address.address_1 }}</div>
|
||||
<div class="address-bottom">
|
||||
<span class="badge bg-success" v-if="form.shipping_address_id == address.id">{{ __('shop/checkout.chosen') }}</span>
|
||||
<div>
|
||||
<span class="badge bg-success" v-if="form.shipping_address_id == address.id">{{ __('shop/checkout.chosen') }}</span>
|
||||
{{-- <span class="badge bg-info" v-if="address.default">{{ __('shop/account.addresses.default_address') }}</span> --}}
|
||||
</div>
|
||||
<a class="" @click.stop="editAddress(index)">{{ __('shop/checkout.edit') }}</a>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -51,8 +51,6 @@
|
|||
<el-form-item label="{{ __('address.default') }}">
|
||||
<el-switch
|
||||
v-model="{{ $address_form_key }}.default"
|
||||
:active-value="1"
|
||||
:inactive-value="0"
|
||||
>
|
||||
</el-switch>
|
||||
</el-form-item>
|
||||
|
|
|
|||
Loading…
Reference in New Issue