|
|
@@ -1,8 +1,8 @@
|
|
1
|
1
|
<template lang="pug">
|
|
2
|
2
|
figure.w-flex.column
|
|
3
|
3
|
figcaption.w-flex.xs12.justify-space-between.align-center
|
|
4
|
|
- p(v-for="label in labels" :key="label").text-upper {{ label }}
|
|
5
|
|
- w-progress(v-model="percentage" size="0.5em" round).mt4
|
|
|
4
|
+ p(v-for="(label, index) in labels" :key="label" :class="{ 'main': index === 1 }") {{ label }}
|
|
|
5
|
+ w-progress(v-model="percentage" size="0.5em" round).mb7
|
|
6
|
6
|
</template>
|
|
7
|
7
|
|
|
8
|
8
|
<script>
|
|
|
@@ -22,5 +22,19 @@ export default {
|
|
22
|
22
|
}
|
|
23
|
23
|
</script>
|
|
24
|
24
|
<style lang="sass">
|
|
25
|
|
-
|
|
|
25
|
+ figure
|
|
|
26
|
+ figcaption
|
|
|
27
|
+ font-family: Century Gothic, CenturyGothic, AppleGothic, sans-serif
|
|
|
28
|
+ text-transform: capitalize
|
|
|
29
|
+ .main
|
|
|
30
|
+ color: #4D9127
|
|
|
31
|
+ font-weight: bold
|
|
|
32
|
+ text-transform: uppercase
|
|
|
33
|
+
|
|
|
34
|
+
|
|
|
35
|
+ .w-progress
|
|
|
36
|
+ background-color: #4C5264
|
|
|
37
|
+ .w-progress__progress
|
|
|
38
|
+ color: #4D9127
|
|
|
39
|
+
|
|
26
|
40
|
</style>
|