@xsolla/xui-core 0.170.1 → 0.170.2
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/index.js +14 -14
- package/index.js.map +1 -1
- package/index.mjs +14 -14
- package/index.mjs.map +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -3825,51 +3825,51 @@ var themeConfig = (mode = "dark", productContext = defaultProductContext) => {
|
|
|
3825
3825
|
const configs = {
|
|
3826
3826
|
xl: {
|
|
3827
3827
|
height: 64,
|
|
3828
|
-
paddingHorizontal:
|
|
3828
|
+
paddingHorizontal: 21,
|
|
3829
3829
|
fontSize: 20,
|
|
3830
3830
|
lineHeight: 22,
|
|
3831
|
-
iconSize:
|
|
3831
|
+
iconSize: 22,
|
|
3832
3832
|
gap: 6,
|
|
3833
3833
|
borderRadius: shape.toggleButtonGroup.xl.borderRadius,
|
|
3834
3834
|
itemGap: 8
|
|
3835
3835
|
},
|
|
3836
3836
|
lg: {
|
|
3837
3837
|
height: 56,
|
|
3838
|
-
paddingHorizontal:
|
|
3838
|
+
paddingHorizontal: 18,
|
|
3839
3839
|
fontSize: 18,
|
|
3840
3840
|
lineHeight: 20,
|
|
3841
|
-
iconSize:
|
|
3841
|
+
iconSize: 20,
|
|
3842
3842
|
gap: 4,
|
|
3843
3843
|
borderRadius: shape.toggleButtonGroup.lg.borderRadius,
|
|
3844
3844
|
itemGap: 8
|
|
3845
3845
|
},
|
|
3846
3846
|
md: {
|
|
3847
3847
|
height: 48,
|
|
3848
|
-
paddingHorizontal:
|
|
3848
|
+
paddingHorizontal: 15,
|
|
3849
3849
|
fontSize: 16,
|
|
3850
3850
|
lineHeight: 18,
|
|
3851
|
-
iconSize:
|
|
3851
|
+
iconSize: 18,
|
|
3852
3852
|
gap: 4,
|
|
3853
3853
|
borderRadius: shape.toggleButtonGroup.md.borderRadius,
|
|
3854
|
-
itemGap:
|
|
3854
|
+
itemGap: 6
|
|
3855
3855
|
},
|
|
3856
3856
|
sm: {
|
|
3857
3857
|
height: 40,
|
|
3858
3858
|
paddingHorizontal: 12,
|
|
3859
3859
|
fontSize: 14,
|
|
3860
3860
|
lineHeight: 16,
|
|
3861
|
-
iconSize:
|
|
3862
|
-
gap:
|
|
3861
|
+
iconSize: 16,
|
|
3862
|
+
gap: 4,
|
|
3863
3863
|
borderRadius: shape.toggleButtonGroup.sm.borderRadius,
|
|
3864
3864
|
itemGap: 4
|
|
3865
3865
|
},
|
|
3866
3866
|
xs: {
|
|
3867
3867
|
height: 32,
|
|
3868
|
-
paddingHorizontal:
|
|
3869
|
-
fontSize:
|
|
3870
|
-
lineHeight:
|
|
3871
|
-
iconSize:
|
|
3872
|
-
gap:
|
|
3868
|
+
paddingHorizontal: 9,
|
|
3869
|
+
fontSize: 12,
|
|
3870
|
+
lineHeight: 14,
|
|
3871
|
+
iconSize: 14,
|
|
3872
|
+
gap: 4,
|
|
3873
3873
|
borderRadius: shape.toggleButtonGroup.xs.borderRadius,
|
|
3874
3874
|
itemGap: 4
|
|
3875
3875
|
}
|