@xsolla/xui-core 0.106.0 → 0.108.0

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.mjs CHANGED
@@ -2535,17 +2535,17 @@ var themeConfig = (mode = "dark") => ({
2535
2535
  const configs = {
2536
2536
  xl: {
2537
2537
  height: 64,
2538
- paddingHorizontal: 20,
2538
+ paddingHorizontal: 18,
2539
2539
  fontSize: 20,
2540
2540
  lineHeight: 22,
2541
2541
  iconSize: 24,
2542
- gap: 4,
2542
+ gap: 6,
2543
2543
  borderRadius: 8,
2544
2544
  itemGap: 8
2545
2545
  },
2546
2546
  lg: {
2547
2547
  height: 56,
2548
- paddingHorizontal: 20,
2548
+ paddingHorizontal: 16,
2549
2549
  fontSize: 18,
2550
2550
  lineHeight: 20,
2551
2551
  iconSize: 24,
@@ -2555,7 +2555,7 @@ var themeConfig = (mode = "dark") => ({
2555
2555
  },
2556
2556
  md: {
2557
2557
  height: 48,
2558
- paddingHorizontal: 20,
2558
+ paddingHorizontal: 16,
2559
2559
  fontSize: 16,
2560
2560
  lineHeight: 18,
2561
2561
  iconSize: 24,
@@ -2565,13 +2565,23 @@ var themeConfig = (mode = "dark") => ({
2565
2565
  },
2566
2566
  sm: {
2567
2567
  height: 40,
2568
- paddingHorizontal: 20,
2568
+ paddingHorizontal: 12,
2569
2569
  fontSize: 14,
2570
2570
  lineHeight: 16,
2571
- iconSize: 20,
2572
- gap: 4,
2571
+ iconSize: 24,
2572
+ gap: 2,
2573
2573
  borderRadius: 4,
2574
- itemGap: 8
2574
+ itemGap: 4
2575
+ },
2576
+ xs: {
2577
+ height: 32,
2578
+ paddingHorizontal: 12,
2579
+ fontSize: 14,
2580
+ lineHeight: 16,
2581
+ iconSize: 24,
2582
+ gap: 2,
2583
+ borderRadius: 4,
2584
+ itemGap: 4
2575
2585
  }
2576
2586
  };
2577
2587
  return configs[size];