axidio-styleguide-library1-v2 0.2.75 → 0.2.76

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.
@@ -8587,7 +8587,7 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
8587
8587
  // Minimum width per bar group based on device and number of subgroups
8588
8588
  const minWidthPerGroup = (() => {
8589
8589
  if (subgroupsCount > 2) {
8590
- return isMobile ? 80 : isTablet ? 100 : 120; // Wider for multiple subgroups
8590
+ return isMobile ? 100 : isTablet ? 100 : 120; // Wider for multiple subgroups
8591
8591
  }
8592
8592
  return isMobile ? 40 : isTablet ? 60 : 80; // Normal width for 1-2 subgroups
8593
8593
  })();