File tree Expand file tree Collapse file tree 5 files changed +18
-8
lines changed Expand file tree Collapse file tree 5 files changed +18
-8
lines changed Original file line number Diff line number Diff line change 42
42
</v-flex >
43
43
<v-flex xs12 sm12 >
44
44
<v-btn-toggle >
45
- <v-btn flat @click.native =" move(1)" v-on:mouseup =" stop()" >
45
+ <v-btn flat v-on:mousedown =" move(1)" v-on:mouseup =" stop()" >
46
46
<v-icon >keyboard_arrow_left</v-icon >
47
47
</v-btn >
48
- <v-btn flat @click.native =" move(2)" v-on:mouseup =" stop()" >
48
+ <v-btn flat v-on:mousedown =" move(2)" v-on:mouseup =" stop()" >
49
49
<v-icon >keyboard_arrow_right</v-icon >
50
50
</v-btn >
51
51
</v-btn-toggle >
52
52
</v-flex >
53
53
<v-flex xs12 sm12 >
54
54
<v-btn-toggle >
55
- <v-btn flat @click.native =" move(3)" v-on:mouseup =" stop()" >
55
+ <v-btn flat v-on:mousedown =" move(3)" v-on:mouseup =" stop()" >
56
56
<v-icon >keyboard_arrow_down</v-icon >
57
57
</v-btn >
58
58
</v-btn-toggle >
@@ -115,6 +115,7 @@ export default {
115
115
this .$store .commit (' toggleDrawer' , ! currentStatus)
116
116
},
117
117
move : function (direction ) {
118
+ console .log (" move" )
118
119
let axios = this .$axios
119
120
let CB = this .$data .CB
120
121
if (direction == 0 ) {
@@ -160,6 +161,7 @@ export default {
160
161
}
161
162
},
162
163
stop : function () {
164
+ console .log (" stopping" )
163
165
let axios = this .$axios
164
166
let CB = this .$data .CB
165
167
axios .post (CB + ' /stop' ).then (function (response ) {
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ export default {
72
72
font-family : ' Overpass Mono' ;
73
73
font-weight : 600 ;
74
74
letter-spacing : -5px ;
75
- background-color : black ;
75
+ background-color : #070300 ;
76
76
color : transparent ;
77
77
text-shadow : 3px 3px 3px rgba (255 , 255 , 255 , 0.25 );
78
78
-webkit-background-clip : text ;
Original file line number Diff line number Diff line change @@ -91,7 +91,5 @@ export default {
91
91
92
92
</script >
93
93
<style scoped>
94
- .navEntry {
95
- font-size : 15px ;
96
- }
94
+
97
95
</style >
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ import 'material-design-icons-iconfont/dist/material-design-icons.css'
23
23
import '@fortawesome/fontawesome-free/css/all.css'
24
24
import 'typeface-cousine'
25
25
import 'typeface-quicksand'
26
+ import 'typeface-overpass'
26
27
import 'typeface-overpass-mono'
27
28
28
29
// Components
Original file line number Diff line number Diff line change 5
5
@import '~vuetify/src/stylus/settings/_variables'
6
6
7
7
$body-font-family = 'Open Sans'
8
+ $heading-font-family = 'Overpass'
8
9
$button-font-weight = 600
9
10
$list-title-font-weight = 600
10
11
$navigation-drawer-item-font-size = 40px
@@ -16,15 +17,23 @@ $font-weights = {
16
17
// Components
17
18
@import '~vuetify/src/stylus/main'
18
19
20
+ h3
21
+ font-size : 20px
22
+ font-family : 'Overpass'
23
+
24
+
19
25
.v-toolbar__title
26
+ font-family : 'Overpass'
20
27
font-size : 24px
21
28
22
29
.v-tabs__div
30
+ font-size : 15px
23
31
font-weight : 600
24
32
25
33
.v-navigation-drawer
26
34
.v-list .v-list__tile
27
- font-weight : 600
35
+ font-weight : 500
36
+ font-size : 16px
28
37
29
38
.v-icon
30
39
font-weight : 500
You can’t perform that action at this time.
0 commit comments