quasar-factory-lib 0.1.11 → 0.1.12
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/quasar-factory-lib.js +3 -3
- package/dist/quasar-factory-lib.umd.cjs +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/components/SkeletonAreas/SkeletonAreas.vue +0 -1
- package/src/components/SkeletonFormCreateTask/SkeletonFormCreateTask.vue +2 -17
- package/src/components/SkeletonFormCreateTask/style.css +14 -0
- package/src/css/app.css +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div>
|
|
3
|
-
<q-card class="
|
|
3
|
+
<q-card class="form-create-task fixed-center">
|
|
4
4
|
<q-item>
|
|
5
5
|
<q-item-section>
|
|
6
6
|
<q-item-label>
|
|
@@ -39,19 +39,4 @@
|
|
|
39
39
|
name: 'SkeletonFormCreateTask',
|
|
40
40
|
}
|
|
41
41
|
</script>
|
|
42
|
-
|
|
43
|
-
.q-card {
|
|
44
|
-
width: 400px;
|
|
45
|
-
}
|
|
46
|
-
@media only screen and (max-width: 1100px) {
|
|
47
|
-
.q-card {
|
|
48
|
-
width: 300px;
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
@media only screen and (max-width: 350px) {
|
|
52
|
-
.q-card {
|
|
53
|
-
margin: auto;
|
|
54
|
-
height: auto;
|
|
55
|
-
}
|
|
56
|
-
}
|
|
57
|
-
</style>
|
|
42
|
+
|
package/src/css/app.css
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
@import url('../components/TaskNavBar/css/taskNavBar.css');
|
|
3
3
|
@import url('../components/ConfirmedTask/style.css');
|
|
4
4
|
@import url('../components/SkeletonAreas/style.css');
|
|
5
|
+
@import url('../components/SkeletonFormCreateTask/style.css');
|
|
5
6
|
@import url('./fonts.css');
|
|
6
7
|
:root {
|
|
7
8
|
--main-color: #FFF8F2;
|