@faststore/ui 2.1.93 → 2.1.94
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@faststore/ui",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.94",
|
|
4
4
|
"description": "A lightweight, framework agnostic component library for React",
|
|
5
5
|
"author": "emersonlaurentino",
|
|
6
6
|
"license": "MIT",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
}
|
|
49
49
|
],
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@faststore/components": "^2.1.
|
|
51
|
+
"@faststore/components": "^2.1.94",
|
|
52
52
|
"include-media": "^1.4.10",
|
|
53
53
|
"modern-normalize": "^1.1.0",
|
|
54
54
|
"react-swipeable": "^7.0.0",
|
|
@@ -72,5 +72,5 @@
|
|
|
72
72
|
"node": "16.18.0",
|
|
73
73
|
"yarn": "1.19.1"
|
|
74
74
|
},
|
|
75
|
-
"gitHead": "
|
|
75
|
+
"gitHead": "73b1bd57b7d9e0984b3f0bb4649b027430075d34"
|
|
76
76
|
}
|
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
// --------------------------------------------------------
|
|
5
5
|
|
|
6
6
|
// Track
|
|
7
|
-
--fs-carousel-padding-mobile : 0 var(--fs-grid-padding);
|
|
8
|
-
--fs-carousel-padding-desktop : 0 calc((100% - var(--fs-grid-max-width))/2) var(--fs-spacing-0);
|
|
7
|
+
--fs-carousel-padding-mobile : var(--fs-spacing-0) var(--fs-grid-padding);
|
|
8
|
+
--fs-carousel-padding-desktop : var(--fs-spacing-0) calc((100% - var(--fs-grid-max-width))/2) var(--fs-spacing-0);
|
|
9
9
|
|
|
10
10
|
// Item
|
|
11
11
|
--fs-carousel-item-width-mobile : 60%;
|
|
@@ -96,6 +96,7 @@
|
|
|
96
96
|
}
|
|
97
97
|
|
|
98
98
|
[data-fs-carousel-track] {
|
|
99
|
+
display: flex;
|
|
99
100
|
padding: var(--fs-carousel-padding-mobile);
|
|
100
101
|
|
|
101
102
|
&::-webkit-scrollbar {
|
|
@@ -109,6 +110,7 @@
|
|
|
109
110
|
|
|
110
111
|
[data-fs-carousel-item] {
|
|
111
112
|
width: var(--fs-carousel-item-width-mobile);
|
|
113
|
+
flex-shrink: 0;
|
|
112
114
|
|
|
113
115
|
&:not(:last-of-type) {
|
|
114
116
|
margin-right: var(--fs-carousel-item-margin-right);
|
|
@@ -116,7 +118,6 @@
|
|
|
116
118
|
|
|
117
119
|
@include media(">=tablet") {
|
|
118
120
|
width: var(--fs-carousel-item-width-tablet);
|
|
119
|
-
height: 100%;
|
|
120
121
|
}
|
|
121
122
|
|
|
122
123
|
@include media(">=desktop") {
|
|
@@ -117,6 +117,12 @@
|
|
|
117
117
|
row-gap: var(--fs-product-details-vertical-spacing);
|
|
118
118
|
}
|
|
119
119
|
|
|
120
|
+
[data-fs-product-details-prices] {
|
|
121
|
+
display: flex;
|
|
122
|
+
flex-direction: column;
|
|
123
|
+
justify-content: center;
|
|
124
|
+
}
|
|
125
|
+
|
|
120
126
|
[data-fs-product-details-values] {
|
|
121
127
|
display: flex;
|
|
122
128
|
justify-content: space-between;
|