@maas/vue-equipment 0.7.8 → 0.7.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.
package/dist/nuxt/module.json
CHANGED
|
@@ -159,6 +159,8 @@ watch(isActive, async (value) => {
|
|
|
159
159
|
--magic-modal-z-index: 999;
|
|
160
160
|
--magic-modal-backdrop-color: rgba(0, 0, 0, 0.5);
|
|
161
161
|
--magic-modal-backdrop-filter: unset;
|
|
162
|
+
--magic-modal-content-align-items: center;
|
|
163
|
+
--magic-modal-content-justify-content: center;
|
|
162
164
|
}
|
|
163
165
|
|
|
164
166
|
.magic-modal {
|
|
@@ -182,8 +184,8 @@ watch(isActive, async (value) => {
|
|
|
182
184
|
max-height: 100%;
|
|
183
185
|
width: 100%;
|
|
184
186
|
display: flex;
|
|
185
|
-
align-items:
|
|
186
|
-
justify-content:
|
|
187
|
+
align-items: var(--magic-modal-content-align-items);
|
|
188
|
+
justify-content: var(--magic-modal-content-justify-content);
|
|
187
189
|
overflow-y: auto;
|
|
188
190
|
}
|
|
189
191
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maas/vue-equipment",
|
|
3
3
|
"description": "A magic collection of Vue composables, plugins, components and directives",
|
|
4
|
-
"version": "0.7.
|
|
4
|
+
"version": "0.7.9",
|
|
5
5
|
"author": "Robin Scholz <https://github.com/robinscholz>, Christoph Jeworutzki <https://github.com/ChristophJeworutzki>",
|
|
6
6
|
"devDependencies": {
|
|
7
7
|
"@antfu/ni": "^0.21.5",
|