@melodicdev/components 1.6.8 → 1.6.9

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.
@@ -22601,7 +22601,7 @@ const dialogStyles = () => css`
22601
22601
  /* Dialog base */
22602
22602
  dialog.ml-dialog {
22603
22603
  position: fixed;
22604
- display: flex;
22604
+ display: none;
22605
22605
  flex-direction: column;
22606
22606
  width: 100%;
22607
22607
  max-width: var(--ml-dialog-max-width);
@@ -22624,6 +22624,7 @@ const dialogStyles = () => css`
22624
22624
  }
22625
22625
 
22626
22626
  dialog.ml-dialog[open] {
22627
+ display: flex;
22627
22628
  transform: scale(1) translateY(0);
22628
22629
  opacity: 1;
22629
22630
  }