@wistia/ui 0.17.0 → 0.17.1

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/dist/index.cjs CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  /*
3
- * @license @wistia/ui v0.17.0
3
+ * @license @wistia/ui v0.17.1
4
4
  *
5
5
  * Copyright (c) 2024-2025, Wistia, Inc. and its affiliates.
6
6
  *
@@ -15772,9 +15772,8 @@ var StyledModalContent = (0, import_styled_components95.default)(import_react_di
15772
15772
  position: fixed;
15773
15773
  top: unset;
15774
15774
  left: unset;
15775
- width: ${({ $width }) => $width ?? DEFAULT_MODAL_WIDTH};
15776
- min-width: ${({ $width }) => $width ?? DEFAULT_MODAL_WIDTH};
15777
- max-width: var(--wui-modal-max-width);
15775
+ width: calc(100vw - var(--wui-space-05) * 2);
15776
+ max-width: ${({ $width }) => $width ?? DEFAULT_MODAL_WIDTH};
15778
15777
  border-radius: var(--wui-border-radius-03);
15779
15778
  animation-duration: var(--wui-motion-duration-03);
15780
15779
  animation-timing-function: var(--wui-motion-ease-out);