@agentiffai/design 1.3.20 → 1.3.22

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.
@@ -3092,11 +3092,11 @@ var GlobalSidebarStyles2 = styled9.createGlobalStyle`
3092
3092
  bottom: calc(52px + ${tokens.spacing.sm} + var(--safe-area-bottom, 0px)) !important;
3093
3093
  /* LEFT: Account for landscape notch on left side */
3094
3094
  left: calc(${tokens.spacing.sm} + var(--safe-area-left, 0px)) !important;
3095
- width: calc(100vw - ${tokens.spacing.lg} - var(--safe-area-left, 0px) - var(--safe-area-right, 0px)) !important;
3096
- /* Adjust height to account for top, bottom safe areas, and navbar */
3097
- height: calc(100vh - ${tokens.spacing.lg} - var(--safe-area-top, 0px) - 52px - var(--safe-area-bottom, 0px)) !important;
3098
- max-width: calc(100vw - ${tokens.spacing.lg} - var(--safe-area-left, 0px) - var(--safe-area-right, 0px)) !important;
3099
- max-height: calc(100vh - ${tokens.spacing.lg} - var(--safe-area-top, 0px) - 52px - var(--safe-area-bottom, 0px)) !important;
3095
+ /* Let left + right define width, top + bottom define height — no explicit values needed */
3096
+ width: auto !important;
3097
+ height: auto !important;
3098
+ max-width: none !important;
3099
+ max-height: none !important;
3100
3100
  margin: 0 !important;
3101
3101
  border-radius: ${tokens.borderRadius.xl} !important;
3102
3102
 
@@ -3140,10 +3140,10 @@ var GlobalSidebarStyles2 = styled9.createGlobalStyle`
3140
3140
  bottom: calc(52px + ${tokens.spacing.sm} + var(--safe-area-bottom, 0px)) !important;
3141
3141
  left: auto !important;
3142
3142
  width: 28rem !important;
3143
- /* Adjust height to account for top, bottom safe areas, and navbar */
3144
- height: calc(100vh - ${tokens.spacing.lg} - var(--safe-area-top, 0px) - 52px - var(--safe-area-bottom, 0px)) !important;
3143
+ /* Let top + bottom define height no explicit value needed */
3144
+ height: auto !important;
3145
3145
  max-width: 28rem !important;
3146
- max-height: calc(100vh - ${tokens.spacing.lg} - var(--safe-area-top, 0px) - 52px - var(--safe-area-bottom, 0px)) !important;
3146
+ max-height: none !important;
3147
3147
  }
3148
3148
  }
3149
3149