@sc-360-v2/storefront-cms-library 0.5.31 → 0.5.33
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/add-existing-form.scss +1 -1
- package/dist/amount-estimator.scss +1083 -1083
- package/dist/animation-control.scss +23 -23
- package/dist/badge.scss +388 -388
- package/dist/builder.js +1 -1
- package/dist/bulk-variant-picker copy.scss +1121 -1121
- package/dist/bundleDetails copy.scss +1431 -1431
- package/dist/button copy.scss +271 -271
- package/dist/button.scss +10 -0
- package/dist/buy-for-tabs-container-item.scss +80 -80
- package/dist/cart-products-sidebar.scss +211 -211
- package/dist/cart-wrapper.scss +127 -127
- package/dist/cartGrouping.scss +89 -89
- package/dist/category-groups-quota-details.scss +451 -451
- package/dist/categoryDetails.scss +61 -61
- package/dist/categoryWidget.scss +34 -34
- package/dist/checkbox-radio.scss +124 -124
- package/dist/common-element.scss +35 -35
- package/dist/confirmationModal.scss +139 -139
- package/dist/custom-fonts.scss +100 -100
- package/dist/embroider-preview-element.scss +94 -94
- package/dist/embroider-template-1.scss +482 -482
- package/dist/emtpy-templates.scss +165 -165
- package/dist/fb-dropdown.scss +125 -125
- package/dist/filter-results.scss +323 -323
- package/dist/flex-text-editor.scss +271 -271
- package/dist/form-zindex-module.scss +24 -24
- package/dist/icon-library.scss +74 -74
- package/dist/icon-list.scss +7 -0
- package/dist/image-for-product.scss +21 -21
- package/dist/lightbox.scss +78 -78
- package/dist/line.scss +99 -25
- package/dist/loader.scss +37 -37
- package/dist/menu-item.scss +19 -19
- package/dist/my-wishlist.scss +17 -17
- package/dist/order-processing.scss +61 -61
- package/dist/overflow-module.scss +63 -63
- package/dist/past-orders.scss +975 -975
- package/dist/payment-methods.scss +289 -289
- package/dist/pickup-locations.scss +1167 -1167
- package/dist/position-module.scss +95 -95
- package/dist/prefix-list.scss +86 -86
- package/dist/product-actions copy.scss +2765 -2765
- package/dist/product-customizations.scss +149 -149
- package/dist/product-image copy.scss +787 -787
- package/dist/product-inventory.scss +1378 -1378
- package/dist/product-promotions.scss +2759 -2759
- package/dist/quotes.scss +737 -737
- package/dist/repeater copy.scss +635 -635
- package/dist/responsive-behaviour.scss +29 -29
- package/dist/rfqs.scss +736 -736
- package/dist/scroll.scss +4 -3
- package/dist/shareCartSideBar.scss +254 -254
- package/dist/shipping-estimator.scss +41 -41
- package/dist/sort.scss +89 -89
- package/dist/static-text.scss +52 -52
- package/dist/stockStatus.scss +64 -64
- package/dist/store-locations.scss +1398 -1398
- package/dist/sub-category.scss +74 -74
- package/dist/submit-quote.scss +275 -275
- package/dist/tab-container-item.scss +80 -80
- package/dist/tab-v2.scss +583 -583
- package/dist/table-common.scss +506 -506
- package/dist/table.scss +685 -685
- package/dist/tabs.scss +395 -395
- package/dist/text-temp.scss +109 -109
- package/dist/toaster.scss +350 -350
- package/dist/toggle-button.scss +32 -32
- package/dist/transform-properties-module.scss +20 -20
- package/dist/types/builder/tools/element-edit/icon-list.d.ts +6 -0
- package/dist/types/builder/tools/element-edit/line.d.ts +21 -0
- package/dist/types/builder/tools/element-edit/scroll.d.ts +0 -1
- package/dist/types/builder/tools/element-edit/variantPicker.d.ts +1 -145
- package/dist/user-elements copy.scss +1437 -1437
- package/dist/user-elements.scss +0 -1
- package/dist/variant-picker.scss +485 -133
- package/dist/video.scss +476 -476
- package/dist/wishlist-overlay.scss +48 -48
- package/package.json +1 -1
|
@@ -1,139 +1,139 @@
|
|
|
1
|
-
.confirm-modal-overlay {
|
|
2
|
-
position: fixed;
|
|
3
|
-
top: 0;
|
|
4
|
-
left: 0;
|
|
5
|
-
width: 100%;
|
|
6
|
-
height: 100%;
|
|
7
|
-
background: rgba(17, 24, 39, 0.5); // dark semi-transparent
|
|
8
|
-
display: flex;
|
|
9
|
-
align-items: center;
|
|
10
|
-
justify-content: center;
|
|
11
|
-
z-index: 1000;
|
|
12
|
-
|
|
13
|
-
.confirm-modal {
|
|
14
|
-
background: #ffffff;
|
|
15
|
-
border-radius: 10px;
|
|
16
|
-
padding: 24px;
|
|
17
|
-
width: 480px;
|
|
18
|
-
max-width: 480px;
|
|
19
|
-
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
|
|
20
|
-
position: relative;
|
|
21
|
-
text-align: center;
|
|
22
|
-
min-height: 174px;
|
|
23
|
-
line-height: 20px;
|
|
24
|
-
display: grid;
|
|
25
|
-
gap: 10px;
|
|
26
|
-
|
|
27
|
-
.confirm-modal-header {
|
|
28
|
-
display: flex;
|
|
29
|
-
align-items: center;
|
|
30
|
-
width: 100%;
|
|
31
|
-
justify-content: space-between;
|
|
32
|
-
.title {
|
|
33
|
-
font-size: 18px;
|
|
34
|
-
font-weight: 700;
|
|
35
|
-
color: #101828;
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
.confirm-modal-body {
|
|
39
|
-
.message {
|
|
40
|
-
font-size: 14px;
|
|
41
|
-
color: #475467;
|
|
42
|
-
text-align: left;
|
|
43
|
-
padding-block-end: 16px;
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
.shp-type {
|
|
47
|
-
display: flex;
|
|
48
|
-
gap: 24px;
|
|
49
|
-
padding: 24px;
|
|
50
|
-
border: 1px solid var(--_gray-200);
|
|
51
|
-
border-radius: 6px;
|
|
52
|
-
margin-block-end: 24px;
|
|
53
|
-
label {
|
|
54
|
-
display: flex;
|
|
55
|
-
gap: 8px;
|
|
56
|
-
cursor: pointer;
|
|
57
|
-
align-items: center;
|
|
58
|
-
position: relative;
|
|
59
|
-
|
|
60
|
-
input[type="radio"] {
|
|
61
|
-
appearance: none;
|
|
62
|
-
width: 16px;
|
|
63
|
-
height: 16px;
|
|
64
|
-
border: 2px solid var(--_gray-300);
|
|
65
|
-
border-radius: 50%;
|
|
66
|
-
position: relative;
|
|
67
|
-
transition: all 0.2s ease-in-out;
|
|
68
|
-
cursor: pointer;
|
|
69
|
-
background-color: transparent;
|
|
70
|
-
|
|
71
|
-
&:checked {
|
|
72
|
-
border-color: var(--_primary-400);
|
|
73
|
-
background-color: var(--_primary-400); // Changed from white for visibility
|
|
74
|
-
|
|
75
|
-
&::after {
|
|
76
|
-
content: "";
|
|
77
|
-
position: absolute;
|
|
78
|
-
top: 1px;
|
|
79
|
-
left: 1px;
|
|
80
|
-
width: 10px;
|
|
81
|
-
height: 10px;
|
|
82
|
-
background: var(--_base-white);
|
|
83
|
-
border-radius: 50%;
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
span {
|
|
89
|
-
font-size: 14px;
|
|
90
|
-
color: #333;
|
|
91
|
-
}
|
|
92
|
-
}
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
.actions {
|
|
96
|
-
display: flex;
|
|
97
|
-
justify-content: space-between;
|
|
98
|
-
gap: 16px;
|
|
99
|
-
height: 40px;
|
|
100
|
-
button {
|
|
101
|
-
height: 40px;
|
|
102
|
-
width: 204px;
|
|
103
|
-
// font-size: 16px;
|
|
104
|
-
cursor: pointer;
|
|
105
|
-
border: none;
|
|
106
|
-
// border-radius: 5px;
|
|
107
|
-
}
|
|
108
|
-
.cancel-button {
|
|
109
|
-
background: transparent;
|
|
110
|
-
color: #6b7280;
|
|
111
|
-
font-weight: 500;
|
|
112
|
-
&:hover {
|
|
113
|
-
border: 1px solid #d0d5dd;
|
|
114
|
-
}
|
|
115
|
-
}
|
|
116
|
-
.confirm-button {
|
|
117
|
-
color: #ffffff;
|
|
118
|
-
font-weight: 600;
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
.confirmation-button {
|
|
122
|
-
background-color: #dc2626; // red-600
|
|
123
|
-
color: #ffffff;
|
|
124
|
-
border-radius: var(--_sf-hr-br-rs, var(--_thm-py-bs-dt-se-br-rs));
|
|
125
|
-
&:hover {
|
|
126
|
-
background-color: #b91c1c;
|
|
127
|
-
}
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
.primaryConfirmation-button {
|
|
131
|
-
background-color: #162578; // red-600
|
|
132
|
-
|
|
133
|
-
&:hover {
|
|
134
|
-
background-color: #101c5f;
|
|
135
|
-
}
|
|
136
|
-
}
|
|
137
|
-
}
|
|
138
|
-
}
|
|
139
|
-
}
|
|
1
|
+
.confirm-modal-overlay {
|
|
2
|
+
position: fixed;
|
|
3
|
+
top: 0;
|
|
4
|
+
left: 0;
|
|
5
|
+
width: 100%;
|
|
6
|
+
height: 100%;
|
|
7
|
+
background: rgba(17, 24, 39, 0.5); // dark semi-transparent
|
|
8
|
+
display: flex;
|
|
9
|
+
align-items: center;
|
|
10
|
+
justify-content: center;
|
|
11
|
+
z-index: 1000;
|
|
12
|
+
|
|
13
|
+
.confirm-modal {
|
|
14
|
+
background: #ffffff;
|
|
15
|
+
border-radius: 10px;
|
|
16
|
+
padding: 24px;
|
|
17
|
+
width: 480px;
|
|
18
|
+
max-width: 480px;
|
|
19
|
+
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
|
|
20
|
+
position: relative;
|
|
21
|
+
text-align: center;
|
|
22
|
+
min-height: 174px;
|
|
23
|
+
line-height: 20px;
|
|
24
|
+
display: grid;
|
|
25
|
+
gap: 10px;
|
|
26
|
+
|
|
27
|
+
.confirm-modal-header {
|
|
28
|
+
display: flex;
|
|
29
|
+
align-items: center;
|
|
30
|
+
width: 100%;
|
|
31
|
+
justify-content: space-between;
|
|
32
|
+
.title {
|
|
33
|
+
font-size: 18px;
|
|
34
|
+
font-weight: 700;
|
|
35
|
+
color: #101828;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
.confirm-modal-body {
|
|
39
|
+
.message {
|
|
40
|
+
font-size: 14px;
|
|
41
|
+
color: #475467;
|
|
42
|
+
text-align: left;
|
|
43
|
+
padding-block-end: 16px;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
.shp-type {
|
|
47
|
+
display: flex;
|
|
48
|
+
gap: 24px;
|
|
49
|
+
padding: 24px;
|
|
50
|
+
border: 1px solid var(--_gray-200);
|
|
51
|
+
border-radius: 6px;
|
|
52
|
+
margin-block-end: 24px;
|
|
53
|
+
label {
|
|
54
|
+
display: flex;
|
|
55
|
+
gap: 8px;
|
|
56
|
+
cursor: pointer;
|
|
57
|
+
align-items: center;
|
|
58
|
+
position: relative;
|
|
59
|
+
|
|
60
|
+
input[type="radio"] {
|
|
61
|
+
appearance: none;
|
|
62
|
+
width: 16px;
|
|
63
|
+
height: 16px;
|
|
64
|
+
border: 2px solid var(--_gray-300);
|
|
65
|
+
border-radius: 50%;
|
|
66
|
+
position: relative;
|
|
67
|
+
transition: all 0.2s ease-in-out;
|
|
68
|
+
cursor: pointer;
|
|
69
|
+
background-color: transparent;
|
|
70
|
+
|
|
71
|
+
&:checked {
|
|
72
|
+
border-color: var(--_primary-400);
|
|
73
|
+
background-color: var(--_primary-400); // Changed from white for visibility
|
|
74
|
+
|
|
75
|
+
&::after {
|
|
76
|
+
content: "";
|
|
77
|
+
position: absolute;
|
|
78
|
+
top: 1px;
|
|
79
|
+
left: 1px;
|
|
80
|
+
width: 10px;
|
|
81
|
+
height: 10px;
|
|
82
|
+
background: var(--_base-white);
|
|
83
|
+
border-radius: 50%;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
span {
|
|
89
|
+
font-size: 14px;
|
|
90
|
+
color: #333;
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.actions {
|
|
96
|
+
display: flex;
|
|
97
|
+
justify-content: space-between;
|
|
98
|
+
gap: 16px;
|
|
99
|
+
height: 40px;
|
|
100
|
+
button {
|
|
101
|
+
height: 40px;
|
|
102
|
+
width: 204px;
|
|
103
|
+
// font-size: 16px;
|
|
104
|
+
cursor: pointer;
|
|
105
|
+
border: none;
|
|
106
|
+
// border-radius: 5px;
|
|
107
|
+
}
|
|
108
|
+
.cancel-button {
|
|
109
|
+
background: transparent;
|
|
110
|
+
color: #6b7280;
|
|
111
|
+
font-weight: 500;
|
|
112
|
+
&:hover {
|
|
113
|
+
border: 1px solid #d0d5dd;
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
.confirm-button {
|
|
117
|
+
color: #ffffff;
|
|
118
|
+
font-weight: 600;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.confirmation-button {
|
|
122
|
+
background-color: #dc2626; // red-600
|
|
123
|
+
color: #ffffff;
|
|
124
|
+
border-radius: var(--_sf-hr-br-rs, var(--_thm-py-bs-dt-se-br-rs));
|
|
125
|
+
&:hover {
|
|
126
|
+
background-color: #b91c1c;
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.primaryConfirmation-button {
|
|
131
|
+
background-color: #162578; // red-600
|
|
132
|
+
|
|
133
|
+
&:hover {
|
|
134
|
+
background-color: #101c5f;
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
}
|
package/dist/custom-fonts.scss
CHANGED
|
@@ -1,100 +1,100 @@
|
|
|
1
|
-
@font-face {
|
|
2
|
-
font-family: "Poppins";
|
|
3
|
-
// font-family: 'Roboto',Arial,Calibiri,sans-serif;
|
|
4
|
-
font-style: normal;
|
|
5
|
-
font-weight: 400;
|
|
6
|
-
font-display: swap;
|
|
7
|
-
src: url("https://sellerscommerce.sirv.com/fonts/poppins-font/Poppins-Regular.woff2")
|
|
8
|
-
format("woff2");
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
/* Inter-Medium*/
|
|
12
|
-
@font-face {
|
|
13
|
-
font-family: "Poppins";
|
|
14
|
-
font-style: normal;
|
|
15
|
-
font-weight: 500;
|
|
16
|
-
font-display: swap;
|
|
17
|
-
src: url("https://sellerscommerce.sirv.com/fonts/poppins-font/poppins-medium.woff2")
|
|
18
|
-
format("woff2");
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
/* Inter-SemiBold*/
|
|
22
|
-
@font-face {
|
|
23
|
-
font-family: "Poppins";
|
|
24
|
-
font-style: normal;
|
|
25
|
-
font-weight: 600;
|
|
26
|
-
font-display: swap;
|
|
27
|
-
src: url("https://sellerscommerce.sirv.com/fonts/poppins-font/Poppins-SemiBold.woff2")
|
|
28
|
-
format("woff2");
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
/* Inter-Bold*/
|
|
32
|
-
@font-face {
|
|
33
|
-
font-family: "Poppins";
|
|
34
|
-
font-style: normal;
|
|
35
|
-
font-weight: 700;
|
|
36
|
-
font-display: swap;
|
|
37
|
-
src: url("https://sellerscommerce.sirv.com/fonts/poppins-font/poppins-bold.woff2") format("woff2");
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
/* Inter-ExtraBold*/
|
|
41
|
-
// @font-face {
|
|
42
|
-
// font-family: "poppins";
|
|
43
|
-
// font-style: normal;
|
|
44
|
-
// font-weight: 800;
|
|
45
|
-
// font-display: swap;
|
|
46
|
-
// src:
|
|
47
|
-
// url('https://cdn.grabon.in/gograbon/v8/fonts-v2/minified/inter-extrabold-webfont.woff2') format('woff2'), / Super Modern Browsers /
|
|
48
|
-
// url('https://cdn.grabon.in/gograbon/v8/fonts-v2/minified/inter-extrabold-webfont.woff') format('woff'); / Modern Browsers /
|
|
49
|
-
// }
|
|
50
|
-
|
|
51
|
-
/* Inter-Black*/
|
|
52
|
-
@font-face {
|
|
53
|
-
font-family: "Poppins";
|
|
54
|
-
font-style: normal;
|
|
55
|
-
font-weight: 900;
|
|
56
|
-
font-display: swap;
|
|
57
|
-
src: url("https://sellerscommerce.sirv.com/fonts/poppins-font/poppins-black.woff2")
|
|
58
|
-
format("woff2");
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
/* Lato Fonts */
|
|
62
|
-
@font-face {
|
|
63
|
-
font-family: "Lato";
|
|
64
|
-
src: url("https://sellerscommerce.sirv.com/fonts/lato-font/Lato-Regular.woff2") format("woff2");
|
|
65
|
-
font-weight: normal;
|
|
66
|
-
font-style: normal;
|
|
67
|
-
font-display: swap;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
@font-face {
|
|
71
|
-
font-family: "Lato";
|
|
72
|
-
src: url("https://sellerscommerce.sirv.com/fonts/lato-font/Lato-Bold.woff2") format("woff2");
|
|
73
|
-
font-weight: bold;
|
|
74
|
-
font-style: normal;
|
|
75
|
-
font-display: swap;
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
@font-face {
|
|
79
|
-
font-family: "Lato Hairline";
|
|
80
|
-
src: url("https://sellerscommerce.sirv.com/fonts/lato-font/Lato-Hairline.woff2") format("woff2");
|
|
81
|
-
font-weight: 300;
|
|
82
|
-
font-style: normal;
|
|
83
|
-
font-display: swap;
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
@font-face {
|
|
87
|
-
font-family: "Lato";
|
|
88
|
-
src: url("https://sellerscommerce.sirv.com/fonts/lato-font/Lato-Light.woff2") format("woff2");
|
|
89
|
-
font-weight: 300;
|
|
90
|
-
font-style: normal;
|
|
91
|
-
font-display: swap;
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
@font-face {
|
|
95
|
-
font-family: "Lato";
|
|
96
|
-
src: url("https://sellerscommerce.sirv.com/fonts/lato-font/Lato-Black.woff2") format("woff2");
|
|
97
|
-
font-weight: 900;
|
|
98
|
-
font-style: normal;
|
|
99
|
-
font-display: swap;
|
|
100
|
-
}
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: "Poppins";
|
|
3
|
+
// font-family: 'Roboto',Arial,Calibiri,sans-serif;
|
|
4
|
+
font-style: normal;
|
|
5
|
+
font-weight: 400;
|
|
6
|
+
font-display: swap;
|
|
7
|
+
src: url("https://sellerscommerce.sirv.com/fonts/poppins-font/Poppins-Regular.woff2")
|
|
8
|
+
format("woff2");
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
/* Inter-Medium*/
|
|
12
|
+
@font-face {
|
|
13
|
+
font-family: "Poppins";
|
|
14
|
+
font-style: normal;
|
|
15
|
+
font-weight: 500;
|
|
16
|
+
font-display: swap;
|
|
17
|
+
src: url("https://sellerscommerce.sirv.com/fonts/poppins-font/poppins-medium.woff2")
|
|
18
|
+
format("woff2");
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
/* Inter-SemiBold*/
|
|
22
|
+
@font-face {
|
|
23
|
+
font-family: "Poppins";
|
|
24
|
+
font-style: normal;
|
|
25
|
+
font-weight: 600;
|
|
26
|
+
font-display: swap;
|
|
27
|
+
src: url("https://sellerscommerce.sirv.com/fonts/poppins-font/Poppins-SemiBold.woff2")
|
|
28
|
+
format("woff2");
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
/* Inter-Bold*/
|
|
32
|
+
@font-face {
|
|
33
|
+
font-family: "Poppins";
|
|
34
|
+
font-style: normal;
|
|
35
|
+
font-weight: 700;
|
|
36
|
+
font-display: swap;
|
|
37
|
+
src: url("https://sellerscommerce.sirv.com/fonts/poppins-font/poppins-bold.woff2") format("woff2");
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
/* Inter-ExtraBold*/
|
|
41
|
+
// @font-face {
|
|
42
|
+
// font-family: "poppins";
|
|
43
|
+
// font-style: normal;
|
|
44
|
+
// font-weight: 800;
|
|
45
|
+
// font-display: swap;
|
|
46
|
+
// src:
|
|
47
|
+
// url('https://cdn.grabon.in/gograbon/v8/fonts-v2/minified/inter-extrabold-webfont.woff2') format('woff2'), / Super Modern Browsers /
|
|
48
|
+
// url('https://cdn.grabon.in/gograbon/v8/fonts-v2/minified/inter-extrabold-webfont.woff') format('woff'); / Modern Browsers /
|
|
49
|
+
// }
|
|
50
|
+
|
|
51
|
+
/* Inter-Black*/
|
|
52
|
+
@font-face {
|
|
53
|
+
font-family: "Poppins";
|
|
54
|
+
font-style: normal;
|
|
55
|
+
font-weight: 900;
|
|
56
|
+
font-display: swap;
|
|
57
|
+
src: url("https://sellerscommerce.sirv.com/fonts/poppins-font/poppins-black.woff2")
|
|
58
|
+
format("woff2");
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
/* Lato Fonts */
|
|
62
|
+
@font-face {
|
|
63
|
+
font-family: "Lato";
|
|
64
|
+
src: url("https://sellerscommerce.sirv.com/fonts/lato-font/Lato-Regular.woff2") format("woff2");
|
|
65
|
+
font-weight: normal;
|
|
66
|
+
font-style: normal;
|
|
67
|
+
font-display: swap;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
@font-face {
|
|
71
|
+
font-family: "Lato";
|
|
72
|
+
src: url("https://sellerscommerce.sirv.com/fonts/lato-font/Lato-Bold.woff2") format("woff2");
|
|
73
|
+
font-weight: bold;
|
|
74
|
+
font-style: normal;
|
|
75
|
+
font-display: swap;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
@font-face {
|
|
79
|
+
font-family: "Lato Hairline";
|
|
80
|
+
src: url("https://sellerscommerce.sirv.com/fonts/lato-font/Lato-Hairline.woff2") format("woff2");
|
|
81
|
+
font-weight: 300;
|
|
82
|
+
font-style: normal;
|
|
83
|
+
font-display: swap;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
@font-face {
|
|
87
|
+
font-family: "Lato";
|
|
88
|
+
src: url("https://sellerscommerce.sirv.com/fonts/lato-font/Lato-Light.woff2") format("woff2");
|
|
89
|
+
font-weight: 300;
|
|
90
|
+
font-style: normal;
|
|
91
|
+
font-display: swap;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
@font-face {
|
|
95
|
+
font-family: "Lato";
|
|
96
|
+
src: url("https://sellerscommerce.sirv.com/fonts/lato-font/Lato-Black.woff2") format("woff2");
|
|
97
|
+
font-weight: 900;
|
|
98
|
+
font-style: normal;
|
|
99
|
+
font-display: swap;
|
|
100
|
+
}
|
|
@@ -1,94 +1,94 @@
|
|
|
1
|
-
@use "sass:map";
|
|
2
|
-
@use "sass:list";
|
|
3
|
-
|
|
4
|
-
// 1: Image,
|
|
5
|
-
// 2: Text
|
|
6
|
-
|
|
7
|
-
@mixin FlexEmbroideryPreviewStyles($type) {
|
|
8
|
-
@if ($type == 1) {
|
|
9
|
-
& > .emb__img__main__element {
|
|
10
|
-
display: var(--_d-flex);
|
|
11
|
-
grid-area: 1/1/2/2;
|
|
12
|
-
position: var(--_p-relative);
|
|
13
|
-
width: var(--_sf-embr-att-wdth, var(--_width-80));
|
|
14
|
-
height: var(--_sf-embr-att-hght, var(--_height-80));
|
|
15
|
-
|
|
16
|
-
& > .emb__img__wrapper {
|
|
17
|
-
display: var(--_d-flex);
|
|
18
|
-
width: 100%;
|
|
19
|
-
|
|
20
|
-
& > div {
|
|
21
|
-
&.emb__img__box {
|
|
22
|
-
display: var(--_d-flex);
|
|
23
|
-
width: 100%;
|
|
24
|
-
height: 100%;
|
|
25
|
-
border-radius: var(--_br-4);
|
|
26
|
-
background: var(--_primary-25);
|
|
27
|
-
display: var(--_d-flex);
|
|
28
|
-
align-items: center;
|
|
29
|
-
justify-content: center;
|
|
30
|
-
|
|
31
|
-
& > svg {
|
|
32
|
-
width: 65%;
|
|
33
|
-
height: 65%;
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
&.emb__img__data__box {
|
|
37
|
-
display: var(--_d-flex);
|
|
38
|
-
width: 100%;
|
|
39
|
-
height: 100%;
|
|
40
|
-
|
|
41
|
-
& > img {
|
|
42
|
-
width: 100%;
|
|
43
|
-
height: 100%;
|
|
44
|
-
object-fit: contain;
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
} @else if($type == 2) {
|
|
51
|
-
& > .emb__text__main__element {
|
|
52
|
-
display: var(--_d-flex);
|
|
53
|
-
grid-area: 1/1/2/2;
|
|
54
|
-
position: var(--_p-relative);
|
|
55
|
-
width: var(--_sf-embr-att-wdth, var(--_width-80));
|
|
56
|
-
height: var(--_sf-embr-att-hght, var(--_height-80));
|
|
57
|
-
|
|
58
|
-
& > .emb__text__wrapper {
|
|
59
|
-
display: var(--_d-flex);
|
|
60
|
-
width: 100%;
|
|
61
|
-
|
|
62
|
-
& > div {
|
|
63
|
-
&.emb__text__box {
|
|
64
|
-
display: var(--_d-flex);
|
|
65
|
-
width: 100%;
|
|
66
|
-
height: 100%;
|
|
67
|
-
border-radius: var(--_br-4);
|
|
68
|
-
background: var(--_primary-25);
|
|
69
|
-
display: var(--_d-flex);
|
|
70
|
-
align-items: center;
|
|
71
|
-
justify-content: center;
|
|
72
|
-
|
|
73
|
-
& > svg {
|
|
74
|
-
width: 65%;
|
|
75
|
-
height: 65%;
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
&.emb__text__data__box {
|
|
80
|
-
display: var(--_d-flex);
|
|
81
|
-
width: 100%;
|
|
82
|
-
height: 100%;
|
|
83
|
-
|
|
84
|
-
& > span {
|
|
85
|
-
word-break: break-all;
|
|
86
|
-
width: 100%;
|
|
87
|
-
text-align: center;
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
|
-
}
|
|
91
|
-
}
|
|
92
|
-
}
|
|
93
|
-
}
|
|
94
|
-
}
|
|
1
|
+
@use "sass:map";
|
|
2
|
+
@use "sass:list";
|
|
3
|
+
|
|
4
|
+
// 1: Image,
|
|
5
|
+
// 2: Text
|
|
6
|
+
|
|
7
|
+
@mixin FlexEmbroideryPreviewStyles($type) {
|
|
8
|
+
@if ($type == 1) {
|
|
9
|
+
& > .emb__img__main__element {
|
|
10
|
+
display: var(--_d-flex);
|
|
11
|
+
grid-area: 1/1/2/2;
|
|
12
|
+
position: var(--_p-relative);
|
|
13
|
+
width: var(--_sf-embr-att-wdth, var(--_width-80));
|
|
14
|
+
height: var(--_sf-embr-att-hght, var(--_height-80));
|
|
15
|
+
|
|
16
|
+
& > .emb__img__wrapper {
|
|
17
|
+
display: var(--_d-flex);
|
|
18
|
+
width: 100%;
|
|
19
|
+
|
|
20
|
+
& > div {
|
|
21
|
+
&.emb__img__box {
|
|
22
|
+
display: var(--_d-flex);
|
|
23
|
+
width: 100%;
|
|
24
|
+
height: 100%;
|
|
25
|
+
border-radius: var(--_br-4);
|
|
26
|
+
background: var(--_primary-25);
|
|
27
|
+
display: var(--_d-flex);
|
|
28
|
+
align-items: center;
|
|
29
|
+
justify-content: center;
|
|
30
|
+
|
|
31
|
+
& > svg {
|
|
32
|
+
width: 65%;
|
|
33
|
+
height: 65%;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
&.emb__img__data__box {
|
|
37
|
+
display: var(--_d-flex);
|
|
38
|
+
width: 100%;
|
|
39
|
+
height: 100%;
|
|
40
|
+
|
|
41
|
+
& > img {
|
|
42
|
+
width: 100%;
|
|
43
|
+
height: 100%;
|
|
44
|
+
object-fit: contain;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
} @else if($type == 2) {
|
|
51
|
+
& > .emb__text__main__element {
|
|
52
|
+
display: var(--_d-flex);
|
|
53
|
+
grid-area: 1/1/2/2;
|
|
54
|
+
position: var(--_p-relative);
|
|
55
|
+
width: var(--_sf-embr-att-wdth, var(--_width-80));
|
|
56
|
+
height: var(--_sf-embr-att-hght, var(--_height-80));
|
|
57
|
+
|
|
58
|
+
& > .emb__text__wrapper {
|
|
59
|
+
display: var(--_d-flex);
|
|
60
|
+
width: 100%;
|
|
61
|
+
|
|
62
|
+
& > div {
|
|
63
|
+
&.emb__text__box {
|
|
64
|
+
display: var(--_d-flex);
|
|
65
|
+
width: 100%;
|
|
66
|
+
height: 100%;
|
|
67
|
+
border-radius: var(--_br-4);
|
|
68
|
+
background: var(--_primary-25);
|
|
69
|
+
display: var(--_d-flex);
|
|
70
|
+
align-items: center;
|
|
71
|
+
justify-content: center;
|
|
72
|
+
|
|
73
|
+
& > svg {
|
|
74
|
+
width: 65%;
|
|
75
|
+
height: 65%;
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
&.emb__text__data__box {
|
|
80
|
+
display: var(--_d-flex);
|
|
81
|
+
width: 100%;
|
|
82
|
+
height: 100%;
|
|
83
|
+
|
|
84
|
+
& > span {
|
|
85
|
+
word-break: break-all;
|
|
86
|
+
width: 100%;
|
|
87
|
+
text-align: center;
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
}
|