@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.
|
@@ -20702,7 +20702,7 @@ const bs = () => i`<dialog class="ml-dialog">
|
|
|
20702
20702
|
/* Dialog base */
|
|
20703
20703
|
dialog.ml-dialog {
|
|
20704
20704
|
position: fixed;
|
|
20705
|
-
display:
|
|
20705
|
+
display: none;
|
|
20706
20706
|
flex-direction: column;
|
|
20707
20707
|
width: 100%;
|
|
20708
20708
|
max-width: var(--ml-dialog-max-width);
|
|
@@ -20725,6 +20725,7 @@ const bs = () => i`<dialog class="ml-dialog">
|
|
|
20725
20725
|
}
|
|
20726
20726
|
|
|
20727
20727
|
dialog.ml-dialog[open] {
|
|
20728
|
+
display: flex;
|
|
20728
20729
|
transform: scale(1) translateY(0);
|
|
20729
20730
|
opacity: 1;
|
|
20730
20731
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dialog.styles.d.ts","sourceRoot":"","sources":["../../../../src/components/overlays/dialog/dialog.styles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,YAAY,
|
|
1
|
+
{"version":3,"file":"dialog.styles.d.ts","sourceRoot":"","sources":["../../../../src/components/overlays/dialog/dialog.styles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,YAAY,iDA2NxB,CAAC"}
|
|
@@ -47,7 +47,7 @@ export const dialogStyles = () => css `
|
|
|
47
47
|
/* Dialog base */
|
|
48
48
|
dialog.ml-dialog {
|
|
49
49
|
position: fixed;
|
|
50
|
-
display:
|
|
50
|
+
display: none;
|
|
51
51
|
flex-direction: column;
|
|
52
52
|
width: 100%;
|
|
53
53
|
max-width: var(--ml-dialog-max-width);
|
|
@@ -70,6 +70,7 @@ export const dialogStyles = () => css `
|
|
|
70
70
|
}
|
|
71
71
|
|
|
72
72
|
dialog.ml-dialog[open] {
|
|
73
|
+
display: flex;
|
|
73
74
|
transform: scale(1) translateY(0);
|
|
74
75
|
opacity: 1;
|
|
75
76
|
}
|