@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.
@@ -3085,11 +3085,11 @@ var GlobalSidebarStyles2 = createGlobalStyle`
3085
3085
  bottom: calc(52px + ${tokens.spacing.sm} + var(--safe-area-bottom, 0px)) !important;
3086
3086
  /* LEFT: Account for landscape notch on left side */
3087
3087
  left: calc(${tokens.spacing.sm} + var(--safe-area-left, 0px)) !important;
3088
- width: calc(100vw - ${tokens.spacing.lg} - var(--safe-area-left, 0px) - var(--safe-area-right, 0px)) !important;
3089
- /* Adjust height to account for top, bottom safe areas, and navbar */
3090
- height: calc(100vh - ${tokens.spacing.lg} - var(--safe-area-top, 0px) - 52px - var(--safe-area-bottom, 0px)) !important;
3091
- max-width: calc(100vw - ${tokens.spacing.lg} - var(--safe-area-left, 0px) - var(--safe-area-right, 0px)) !important;
3092
- max-height: calc(100vh - ${tokens.spacing.lg} - var(--safe-area-top, 0px) - 52px - var(--safe-area-bottom, 0px)) !important;
3088
+ /* Let left + right define width, top + bottom define height — no explicit values needed */
3089
+ width: auto !important;
3090
+ height: auto !important;
3091
+ max-width: none !important;
3092
+ max-height: none !important;
3093
3093
  margin: 0 !important;
3094
3094
  border-radius: ${tokens.borderRadius.xl} !important;
3095
3095
 
@@ -3133,10 +3133,10 @@ var GlobalSidebarStyles2 = createGlobalStyle`
3133
3133
  bottom: calc(52px + ${tokens.spacing.sm} + var(--safe-area-bottom, 0px)) !important;
3134
3134
  left: auto !important;
3135
3135
  width: 28rem !important;
3136
- /* Adjust height to account for top, bottom safe areas, and navbar */
3137
- height: calc(100vh - ${tokens.spacing.lg} - var(--safe-area-top, 0px) - 52px - var(--safe-area-bottom, 0px)) !important;
3136
+ /* Let top + bottom define height no explicit value needed */
3137
+ height: auto !important;
3138
3138
  max-width: 28rem !important;
3139
- max-height: calc(100vh - ${tokens.spacing.lg} - var(--safe-area-top, 0px) - 52px - var(--safe-area-bottom, 0px)) !important;
3139
+ max-height: none !important;
3140
3140
  }
3141
3141
  }
3142
3142