@wistia/ui 0.18.0-beta.af6ce7a5.9372ce9 → 0.18.0-beta.b72a6689.644eb3c

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.18.0-beta.af6ce7a5.9372ce9
3
+ * @license @wistia/ui v0.18.0-beta.b72a6689.644eb3c
4
4
  *
5
5
  * Copyright (c) 2024-2025, Wistia, Inc. and its affiliates.
6
6
  *
@@ -7904,7 +7904,6 @@ var StyledButton = import_styled_components22.styled.button`
7904
7904
  ${({ $variant }) => buttonVariantsStyles[$variant]}
7905
7905
  ${({ $unstyled }) => !$unstyled && buttonBaseStyles}
7906
7906
  ${({ $fullWidth }) => $fullWidth && "width: 100%;"}
7907
- align-self: flex-start;
7908
7907
  text-align: center;
7909
7908
  `;
7910
7909
  var StyledButtonContent = import_styled_components22.styled.div`
@@ -8601,7 +8600,7 @@ var DEFAULT_ELEMENT = "div";
8601
8600
  var BoxComponent = (0, import_react27.forwardRef)(
8602
8601
  ({
8603
8602
  alignContent = "stretch",
8604
- alignItems = "stretch",
8603
+ alignItems = "flex-start",
8605
8604
  alignSelf,
8606
8605
  basis,
8607
8606
  children,
@@ -9120,10 +9119,6 @@ var ButtonGroupComponent = import_styled_components31.styled.div`
9120
9119
  justify-content: ${({ $align }) => getAlignment($align)};
9121
9120
  width: ${({ $fullWidth }) => $fullWidth ? "100%" : "auto"};
9122
9121
 
9123
- ${StyledButton} {
9124
- align-self: unset;
9125
- }
9126
-
9127
9122
  ${mq.smAndUp} {
9128
9123
  flex-direction: row;
9129
9124
  }