@afeefa/vue-app 0.0.129 → 0.0.130
Sign up to get free protection for your applications and to get access to all the features.
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.130
|
package/package.json
CHANGED
@@ -96,6 +96,15 @@ export default class ATableRow extends Vue {
|
|
96
96
|
padding-bottom: .2rem;
|
97
97
|
}
|
98
98
|
}
|
99
|
+
|
100
|
+
.textblock--small {
|
101
|
+
font-size: .8rem;
|
102
|
+
}
|
103
|
+
}
|
104
|
+
|
105
|
+
.textblock--small {
|
106
|
+
font-size: .9rem;
|
107
|
+
line-height: .9;
|
99
108
|
}
|
100
109
|
|
101
110
|
[class*=text-] {
|
@@ -30,6 +30,9 @@
|
|
30
30
|
{{ subtitle }}
|
31
31
|
</h3>
|
32
32
|
<h2>{{ title }}</h2>
|
33
|
+
<h3 v-if="detail">
|
34
|
+
{{ detail }}
|
35
|
+
</h3>
|
33
36
|
</div>
|
34
37
|
</a-row>
|
35
38
|
</template>
|
@@ -38,7 +41,7 @@
|
|
38
41
|
import { Component, Vue } from '@a-vue'
|
39
42
|
|
40
43
|
@Component({
|
41
|
-
props: ['back', 'icon', 'title', 'subtitle']
|
44
|
+
props: ['back', 'icon', 'title', 'subtitle', 'detail']
|
42
45
|
})
|
43
46
|
export default class appBarTitle extends Vue {
|
44
47
|
mounted () {
|
@@ -89,4 +92,9 @@ h2 {
|
|
89
92
|
overflow: hidden;
|
90
93
|
text-overflow: ellipsis;
|
91
94
|
}
|
95
|
+
|
96
|
+
h2 + h3 {
|
97
|
+
color: #666666;
|
98
|
+
font-size: 1rem;
|
99
|
+
}
|
92
100
|
</style>
|