|
|
@@ -72,24 +72,20 @@ export default {
|
|
72
|
72
|
}
|
|
73
|
73
|
</script>
|
|
74
|
74
|
|
|
75
|
|
-<style>
|
|
76
|
|
-.select--matches {
|
|
77
|
|
- display: flex;
|
|
78
|
|
- justify-content: space-between;
|
|
79
|
|
- margin: 0 25px;
|
|
80
|
|
-}
|
|
81
|
|
-.select--matches > div {
|
|
82
|
|
- width: 100%;
|
|
83
|
|
- text-align: center;
|
|
84
|
|
- font-size: 16px;
|
|
85
|
|
- line-height: 40px;
|
|
86
|
|
-}
|
|
87
|
|
-.active {
|
|
88
|
|
- border-bottom: 3px solid #f2cd5c;
|
|
89
|
|
- color: #f2cd5c;
|
|
90
|
|
-}
|
|
91
|
|
-.idle {
|
|
92
|
|
- color: #bcc5d3;
|
|
93
|
|
-}
|
|
|
75
|
+<style lang="sass">
|
|
|
76
|
+.select--matches
|
|
|
77
|
+ display: flex
|
|
|
78
|
+ justify-content: space-between
|
|
|
79
|
+ margin: 0 25px
|
|
|
80
|
+.select--matches > div
|
|
|
81
|
+ width: 100%
|
|
|
82
|
+ text-align: center
|
|
|
83
|
+ font-size: 16px
|
|
|
84
|
+ line-height: 40px
|
|
|
85
|
+.active
|
|
|
86
|
+ border-bottom: 3px solid #f2cd5c
|
|
|
87
|
+ color: #f2cd5c
|
|
|
88
|
+.idle
|
|
|
89
|
+ color: #bcc5d3
|
|
|
90
|
+
|
|
94
|
91
|
</style>
|
|
95
|
|
-s
|