@mixd-id/web-scaffold 0.1.240411045 → 0.1.240411047
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/package.json
CHANGED
package/src/components/Alert.vue
CHANGED
|
@@ -115,7 +115,7 @@ export default{
|
|
|
115
115
|
.confirm{
|
|
116
116
|
@apply fixed top-0 left-0 flex w-screen h-screen px-8;
|
|
117
117
|
@apply items-center justify-center bg-white/50 backdrop-blur-md;
|
|
118
|
-
|
|
118
|
+
z-index: 150;
|
|
119
119
|
}
|
|
120
120
|
[data-theme="dark"] .confirm{
|
|
121
121
|
@apply bg-black/50;
|
|
@@ -240,8 +240,9 @@ export default {
|
|
|
240
240
|
<style module>
|
|
241
241
|
|
|
242
242
|
.contextMenu{
|
|
243
|
-
@apply fixed bg-base-300 min-w-[150px] overflow-y-auto rounded-xl
|
|
243
|
+
@apply fixed bg-base-300 min-w-[150px] overflow-y-auto rounded-xl;
|
|
244
244
|
@apply whitespace-nowrap shadow-2xl border-[1px] border-text-100 mt-[1px];
|
|
245
|
+
z-index: 150;
|
|
245
246
|
}
|
|
246
247
|
|
|
247
248
|
@media screen and (min-width: 640px){
|
package/src/components/Modal.vue
CHANGED
|
@@ -343,6 +343,7 @@ export default{
|
|
|
343
343
|
left: 0;
|
|
344
344
|
bottom: 0;
|
|
345
345
|
right: 0;
|
|
346
|
+
z-index: 100;
|
|
346
347
|
}
|
|
347
348
|
[data-theme="dark"] .bW9k{
|
|
348
349
|
@apply bg-black/50;
|
|
@@ -358,8 +359,9 @@ export default{
|
|
|
358
359
|
.modal{
|
|
359
360
|
@apply fixed;
|
|
360
361
|
@apply bg-base-300 dark:bg-base-400 w-full;
|
|
361
|
-
@apply border-[1px] border-text-50
|
|
362
|
+
@apply border-[1px] border-text-50 flex max-h-[90vh] max-w-full;
|
|
362
363
|
@apply rounded-xl overflow-hidden transition-all;
|
|
364
|
+
z-index: 101;
|
|
363
365
|
}
|
|
364
366
|
|
|
365
367
|
.dropzone{
|