@avenue-ticketing/ui 0.8.0 → 0.10.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.
@@ -4771,7 +4771,7 @@ function PopoverMobileBottomSheetPortal({
4771
4771
  "div",
4772
4772
  {
4773
4773
  className: cn(
4774
- "fixed inset-0 bg-black/40 dark:bg-black/60",
4774
+ "fixed inset-0 bg-black/40 dark:bg-primary/4",
4775
4775
  isAnimating ? "opacity-100" : "opacity-0"
4776
4776
  ),
4777
4777
  style: {
@@ -4907,9 +4907,6 @@ function computePosition(trigger, popover, side, align, offset, viewportPadding)
4907
4907
  left = flippedLeft;
4908
4908
  }
4909
4909
  }
4910
- const layoutHeight = maxHeight ?? contentHeight;
4911
- left = Math.max(pad, Math.min(left, vw - pw - pad));
4912
- top = Math.max(pad, Math.min(top, vh - layoutHeight - pad));
4913
4910
  return { top, left, side: effectiveSide, maxHeight };
4914
4911
  }
4915
4912
  var ARROW_SIZE = 6;