@mekari/pixel3-theme 0.4.2-dev.0 → 0.4.2-dev.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.js +4 -3
- package/dist/index.mjs +4 -3
- package/package.json +1 -1
- package/src/recipes/modal.ts +4 -3
package/dist/index.js
CHANGED
|
@@ -3481,6 +3481,7 @@ var modalSlotRecipe = (0, import_dev27.defineSlotRecipe)({
|
|
|
3481
3481
|
contentChild: {
|
|
3482
3482
|
outline: 0,
|
|
3483
3483
|
width: "100%",
|
|
3484
|
+
height: "100%",
|
|
3484
3485
|
position: "relative",
|
|
3485
3486
|
display: "flex",
|
|
3486
3487
|
flexDir: "column",
|
|
@@ -3536,8 +3537,8 @@ var modalSlotRecipe = (0, import_dev27.defineSlotRecipe)({
|
|
|
3536
3537
|
bg: "overlay",
|
|
3537
3538
|
left: "0",
|
|
3538
3539
|
top: "0",
|
|
3539
|
-
|
|
3540
|
-
|
|
3540
|
+
bottom: "0",
|
|
3541
|
+
right: "0",
|
|
3541
3542
|
zIndex: "overlay",
|
|
3542
3543
|
_nextTheme: {
|
|
3543
3544
|
background: "background.overlay"
|
|
@@ -3551,7 +3552,7 @@ var modalSlotRecipe = (0, import_dev27.defineSlotRecipe)({
|
|
|
3551
3552
|
top: "0"
|
|
3552
3553
|
},
|
|
3553
3554
|
contentChild: {
|
|
3554
|
-
height: "
|
|
3555
|
+
height: "100%",
|
|
3555
3556
|
border: "none",
|
|
3556
3557
|
borderRadius: "none"
|
|
3557
3558
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -3455,6 +3455,7 @@ var modalSlotRecipe = defineSlotRecipe16({
|
|
|
3455
3455
|
contentChild: {
|
|
3456
3456
|
outline: 0,
|
|
3457
3457
|
width: "100%",
|
|
3458
|
+
height: "100%",
|
|
3458
3459
|
position: "relative",
|
|
3459
3460
|
display: "flex",
|
|
3460
3461
|
flexDir: "column",
|
|
@@ -3510,8 +3511,8 @@ var modalSlotRecipe = defineSlotRecipe16({
|
|
|
3510
3511
|
bg: "overlay",
|
|
3511
3512
|
left: "0",
|
|
3512
3513
|
top: "0",
|
|
3513
|
-
|
|
3514
|
-
|
|
3514
|
+
bottom: "0",
|
|
3515
|
+
right: "0",
|
|
3515
3516
|
zIndex: "overlay",
|
|
3516
3517
|
_nextTheme: {
|
|
3517
3518
|
background: "background.overlay"
|
|
@@ -3525,7 +3526,7 @@ var modalSlotRecipe = defineSlotRecipe16({
|
|
|
3525
3526
|
top: "0"
|
|
3526
3527
|
},
|
|
3527
3528
|
contentChild: {
|
|
3528
|
-
height: "
|
|
3529
|
+
height: "100%",
|
|
3529
3530
|
border: "none",
|
|
3530
3531
|
borderRadius: "none"
|
|
3531
3532
|
}
|
package/package.json
CHANGED
package/src/recipes/modal.ts
CHANGED
|
@@ -41,6 +41,7 @@ export const modalSlotRecipe = defineSlotRecipe({
|
|
|
41
41
|
contentChild: {
|
|
42
42
|
outline: 0,
|
|
43
43
|
width: '100%',
|
|
44
|
+
height: '100%',
|
|
44
45
|
position: 'relative',
|
|
45
46
|
display: 'flex',
|
|
46
47
|
flexDir: 'column',
|
|
@@ -96,8 +97,8 @@ export const modalSlotRecipe = defineSlotRecipe({
|
|
|
96
97
|
bg: 'overlay',
|
|
97
98
|
left: '0',
|
|
98
99
|
top: '0',
|
|
99
|
-
|
|
100
|
-
|
|
100
|
+
bottom: '0',
|
|
101
|
+
right: '0',
|
|
101
102
|
zIndex: 'overlay',
|
|
102
103
|
_nextTheme: {
|
|
103
104
|
background: 'background.overlay'
|
|
@@ -111,7 +112,7 @@ export const modalSlotRecipe = defineSlotRecipe({
|
|
|
111
112
|
top: '0'
|
|
112
113
|
},
|
|
113
114
|
contentChild: {
|
|
114
|
-
height: '
|
|
115
|
+
height: '100%',
|
|
115
116
|
border: 'none',
|
|
116
117
|
borderRadius: 'none'
|
|
117
118
|
}
|