quasar-factory-lib 0.0.56 → 0.0.57
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
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
transition-show="slide-up"
|
|
9
9
|
transition-hide="slide-down"
|
|
10
10
|
>
|
|
11
|
-
<q-card :class="values.class">
|
|
11
|
+
<q-card :class="values.class" id="confirmed-task">
|
|
12
12
|
<q-card-section class="q-pa-none full-width flex justify-center items-center" style="height: calc(100vh - 100px);">
|
|
13
13
|
<div style="text-align: center;">
|
|
14
14
|
<div class="q-mb-md">
|
|
@@ -83,6 +83,43 @@ export default defineComponent({
|
|
|
83
83
|
})
|
|
84
84
|
</script>
|
|
85
85
|
|
|
86
|
-
<style
|
|
87
|
-
|
|
86
|
+
<style>
|
|
87
|
+
#confirmed-task .counter{
|
|
88
|
+
font-size: 60px;
|
|
89
|
+
text-align: center;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
#confirmed-task.msg-text{
|
|
93
|
+
font-size: 20px;
|
|
94
|
+
text-align: center;
|
|
95
|
+
margin: auto;
|
|
96
|
+
}
|
|
97
|
+
#confirmed-task .q-btn {
|
|
98
|
+
font-size: 20px;
|
|
99
|
+
}
|
|
100
|
+
#confirmed-task .q-btn:nth-child(2) {
|
|
101
|
+
border: 1px solid #212427;
|
|
102
|
+
}
|
|
103
|
+
#confirmed-task img {
|
|
104
|
+
width: 70px;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
@media only screen and (max-width: 700px) {
|
|
108
|
+
#confirmed-task .counter{
|
|
109
|
+
font-size: 40px;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
#confirmed-task .msg-text{
|
|
113
|
+
font-size: 15px;
|
|
114
|
+
text-align: center;
|
|
115
|
+
margin: auto;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
#confirmed-task img {
|
|
119
|
+
width: 50px;
|
|
120
|
+
}
|
|
121
|
+
#confirmed-task .q-btn {
|
|
122
|
+
font-size: 15px;
|
|
123
|
+
}
|
|
124
|
+
}
|
|
88
125
|
</style>
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
.counter{
|
|
2
|
-
font-size: 60px;
|
|
3
|
-
text-align: center;
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
.msg-text{
|
|
7
|
-
font-size: 20px;
|
|
8
|
-
text-align: center;
|
|
9
|
-
margin: auto;
|
|
10
|
-
}
|
|
11
|
-
.q-btn {
|
|
12
|
-
font-size: 20px;
|
|
13
|
-
}
|
|
14
|
-
.q-btn:nth-child(2) {
|
|
15
|
-
border: 1px solid #212427;
|
|
16
|
-
}
|
|
17
|
-
img {
|
|
18
|
-
width: 70px;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
@media only screen and (max-width: 700px) {
|
|
22
|
-
.counter{
|
|
23
|
-
font-size: 40px;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
.msg-text{
|
|
27
|
-
font-size: 15px;
|
|
28
|
-
text-align: center;
|
|
29
|
-
margin: auto;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
img {
|
|
33
|
-
width: 50px;
|
|
34
|
-
}
|
|
35
|
-
.q-btn {
|
|
36
|
-
font-size: 15px;
|
|
37
|
-
}
|
|
38
|
-
}
|