File tree Expand file tree Collapse file tree 11 files changed +33
-59
lines changed Expand file tree Collapse file tree 11 files changed +33
-59
lines changed Original file line number Diff line number Diff line change @@ -465,7 +465,7 @@ export default {
465
465
}
466
466
.active {
467
467
background-color : $accent ;
468
- border : 1px dashed rgb ( 227 , 203 , 71 ) ;
468
+ border : 1px dashed $accent ;
469
469
}
470
470
.btn {
471
471
font-size : 25px ;
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ Description:
7
7
8
8
<template >
9
9
<span v-if =" showTutorial === false" >
10
- <q-card id =" dashboard-cards" class = " bord " >
10
+ <q-card id =" dashboard-cards" >
11
11
<q-tabs
12
12
v-model =" tab"
13
13
class =" bg-subaccent text-white"
@@ -24,7 +24,7 @@ Description:
24
24
<q-tab name =" routes" label =" Routes" id =" label-text"
25
25
></q-tab >
26
26
</q-tabs >
27
- <q-tab-panels v-model =" tab" animated class = " html-bg text-white " >
27
+ <q-tab-panels v-model =" tab" animated >
28
28
<q-tab-panel name =" detail" >
29
29
<ComponentDetails />
30
30
</q-tab-panel >
@@ -120,9 +120,6 @@ export default {
120
120
</script >
121
121
122
122
<style lang="scss" scoped>
123
- i {
124
- font-size : 11px ;
125
- }
126
123
127
124
.home-sidebar {
128
125
margin : 1rem ;
@@ -150,14 +147,14 @@ i {
150
147
}
151
148
152
149
.q-tab-panel {
153
- /* // matchs the code editor bg */
150
+ /* // matches the code editor bg */
154
151
background : $subprimary ;
155
152
}
156
153
157
154
// changes the length of the tab panels
158
155
.q-tab-panels {
159
156
padding : 0px !important ;
160
- // border-top: 3px solid black ;
157
+ background : $subprimary ;
161
158
}
162
159
163
160
.q-tabs {
175
172
border-radius : 0px ;
176
173
background : $subprimary ;
177
174
}
178
- .html-bg {
179
- /* // give html background color of grey */
180
- background-color : #202122 ;
181
- }
182
175
183
176
.inner-div {
184
177
height : 100% ;
185
178
}
186
179
187
- // .bord {
188
- // border-left: 3px solid black;
189
- // border-right: 3px solid black;
190
- // }
191
180
</style >
Original file line number Diff line number Diff line change 1
1
<template >
2
- <q-card id =" dashboard-cards" class =" board " >
2
+ <q-card id =" dashboard-cards" class =" sidebar-border " >
3
3
<q-tabs
4
4
v-model =" tutorialPage"
5
5
class =" bg-subaccent text-white"
13
13
name =" landing"
14
14
label =" Welcome to Overvue"
15
15
id =" label-text"
16
- style =" border-right : 3px solid black "
17
16
>
18
17
</q-tab >
19
18
<q-tab
20
19
name =" basics"
21
20
label =" Basic Functions"
22
21
id =" label-text"
23
- style =" border-right : 3px solid black "
24
22
>
25
23
</q-tab >
26
24
<q-tab
27
25
name =" advanced"
28
26
label =" Advanced Functions"
29
27
id =" label-text"
30
- style =" border-right : 3px solid black "
31
28
>
32
29
</q-tab >
33
30
</q-tabs >
34
- <q-tab-panels v-model =" tutorialPage" animated class = " html-bg text-white " >
31
+ <q-tab-panels v-model =" tutorialPage" animated >
35
32
<q-tab-panel name =" landing" >
36
33
<Landing @nextTab =" tutorialPage = 'basics'" />
37
34
</q-tab-panel >
@@ -66,17 +63,6 @@ export default {
66
63
</script >
67
64
68
65
<style lang="scss" scoped>
69
- i {
70
- font-size : 11px ;
71
- }
72
-
73
- .home-sidebar {
74
- margin : 1rem ;
75
- justify-content : center ;
76
- border-radius : 5px ;
77
- padding : 0px ;
78
- background : $subsecondary ;
79
- }
80
66
81
67
.q-btn {
82
68
font-size : 8px ;
110
96
111
97
.q-tab-panels {
112
98
padding : 0px !important ;
113
- border-top : 3 px solid black ;
99
+ background : $subprimary ;
114
100
}
115
101
116
102
.q-tabs {
117
- background : #11120f ;
118
- }
119
-
120
- .toolbar-background {
121
- background : black ;
122
- }
123
-
124
- #dashboard-cards {
125
- display : flex ;
126
- flex-direction : column ;
127
- height : 100% ;
128
- border-radius : 0px ;
129
- background : #737578 ;
130
- }
131
- .html-bg {
132
- /* // give html background color of grey */
133
- background-color : #202122 ;
103
+ background : $subprimary ;
134
104
}
135
105
136
106
.inner-div {
137
107
height : 100% ;
138
108
}
139
109
140
- .board {
110
+ .sidebar-border {
141
111
border-left : 3px solid black ;
142
- border-right : 3px solid black ;
143
112
}
144
113
</style >
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ Includes functionality to:
8
8
<div class =" route-display" >
9
9
<q-input
10
10
@keyup.enter =" handleEnterKeyPress"
11
- color =" menutext "
11
+ color =" white "
12
12
dark
13
13
outlined
14
14
bottom-slots
Original file line number Diff line number Diff line change 2
2
<div >
3
3
<q-input
4
4
@keyup.enter =" createNewProp(textProps)"
5
- color =" menutext "
5
+ color =" white "
6
6
dark
7
7
outlined
8
8
bottom-slots
Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ export default {
46
46
height : 100% ;
47
47
// matches the code editor bg
48
48
background : $subprimary ;
49
+ padding : 0px ;
49
50
// changes the length of the tab panels
50
51
}
51
52
.q-tab-panels {
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ Description:
18
18
v-on:keyup.delete.stop
19
19
v-model =" componentNameInputValue"
20
20
label =" Set component name *"
21
- color =" menutext "
21
+ color =" white "
22
22
dark
23
23
dense
24
24
outlined
@@ -179,7 +179,7 @@ export default {
179
179
flex-direction : column ;
180
180
justify-content : flex-start ;
181
181
align-items : stretch ;
182
- margin : 20 px ;
182
+ margin : 4 px ;
183
183
}
184
184
.create-component-form {
185
185
display : flex ;
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ Description:
8
8
<template >
9
9
<div class =" edit-component-div" >
10
10
<div >
11
- <button class =" menu-link" @click =" resetActiveComponent" ><i class =" fa fa-arrow-left" aria-hidden =" true" ></i > Create Component Menu</button >
11
+ <button class =" menu-link" @click =" resetActiveComponent" ><i class =" fa fa-arrow-left" aria-hidden =" true" ></i >& nbsp ; & nbsp ; Create Component Menu</button >
12
12
<q-card class =" expansion-item" dark flat >
13
13
<div
14
14
class =" text-body2"
@@ -20,6 +20,7 @@ Description:
20
20
v-on:keyup.delete.stop
21
21
v-model =" newName"
22
22
:placeholder =" this.activeComponent"
23
+ color =" white"
23
24
dark
24
25
dense
25
26
outlined
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ Functionality:
22
22
<q-tab-panel name =" state" >
23
23
<q-input
24
24
@keyup.enter =" createNewState(textState)"
25
- color =" menutext "
25
+ color =" white "
26
26
dark
27
27
outlined
28
28
v-model =" textState"
217
217
padding : 0 !important ;
218
218
}
219
219
220
+ .q-tabs {
221
+ background : #11120F ;
222
+ }
223
+
220
224
#store-cards {
221
225
height : 80% ;
222
226
border-radius : 0 ;
Original file line number Diff line number Diff line change 4
4
// font-family: 'Montserrat', sans-serif;
5
5
// font-family: 'Mukta', sans-serif;
6
6
// font-family: 'Nunito Sans', sans-serif;
7
+ body {
8
+ font-family : ' Mukta' , sans-serif ;
9
+ color : $menutext ;
10
+ }
7
11
8
12
main {
9
13
background : #5b6e6e ;
You can’t perform that action at this time.
0 commit comments