File tree Expand file tree Collapse file tree 5 files changed +75
-66
lines changed Expand file tree Collapse file tree 5 files changed +75
-66
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ .body--dark {
2
+ --q-primary : #487A91 ;
3
+ --q-secondary : #26A69A ;
4
+ --q-accent : #9C27B0 ;
5
+ --q-positive : #21BA45 ;
6
+ --q-negative : #C10015 ;
7
+ --q-info : #31CCEC ;
8
+ --q-warning : #F2C037 ;
9
+ --q-dark-page : #545454 ;
10
+ }
11
+
12
+ .body--light {
13
+ --q-primary : #0794B9 ;
14
+ --q-secondary : #17DFD5 ;
15
+ --q-accent : #9C27B0 ;
16
+ --q-positive : #21BA45 ;
17
+ --q-negative : #C10015 ;
18
+ --q-info : #31CCEC ;
19
+ --q-warning : #F2C037 ;
20
+ }
21
+
22
+ .text-team-yellow {
23
+ color : #000000 !important ;
24
+ }
25
+
26
+ .bg-team-yellow {
27
+ background : #ced509 !important ;
28
+ }
29
+
30
+ .text-team-blue {
31
+ color : #ffffff !important ;
32
+ }
33
+
34
+ .bg-team-blue {
35
+ background : #134cc4 !important ;
36
+ }
37
+
38
+ h1 {
39
+ margin : 0.3em ;
40
+ }
41
+
42
+ h2 {
43
+ margin : 0.3em ;
44
+ }
45
+
46
+ h3 {
47
+ margin : 0.3em ;
48
+ }
49
+
50
+ h4 {
51
+ margin : 0.3em ;
52
+ }
53
+
54
+ h5 {
55
+ margin : 0.3em ;
56
+ }
57
+
58
+ .max-content-width {
59
+ max-width : 900px ;
60
+ }
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import {Quasar} from 'quasar'
8
8
9
9
import { control } from "@/plugins/control" ;
10
10
11
- import "@/assets/main.css "
11
+ import "@/assets/main.scss "
12
12
13
13
// Import icon libraries
14
14
import '@quasar/extras/material-icons/material-icons.css'
@@ -20,23 +20,7 @@ createApp(App)
20
20
. use ( router )
21
21
. use ( createPinia ( ) )
22
22
. use ( control )
23
- . use ( Quasar , {
24
- config : {
25
- brand : {
26
- primary : '#a11a30' ,
27
- secondary : '#984447' ,
28
- accent : '#9C27B0' ,
29
-
30
- dark : '#07171a' ,
31
- 'dark-page' : '#374040' ,
32
-
33
- positive : '#21BA45' ,
34
- negative : '#C10015' ,
35
- info : '#1ad3ed' ,
36
- warning : '#ddb660'
37
- }
38
- }
39
- } )
23
+ . use ( Quasar )
40
24
. mount ( '#app' )
41
25
42
26
subscribeToLocalStorage ( )
Original file line number Diff line number Diff line change @@ -79,4 +79,6 @@ export const mockedConfig = {
79
79
"Team1" , "Team2"
80
80
] ,
81
81
activeTrackerSource : "Foo" ,
82
+ gameEventBehavior : { } ,
83
+ autoRefConfigs : { } ,
82
84
} as Config
Original file line number Diff line number Diff line change @@ -17,15 +17,6 @@ import {teams} from "@/helpers";
17
17
18
18
<template >
19
19
<div class =" q-ma-md" >
20
- <p >
21
- To set up a new match, go through this page from top to bottom.
22
- The full procedure can be found in the
23
- <q-btn dense color =" primary" target =" _blank"
24
- href =" https://robocup-ssl.github.io/ssl-rules/sslrules.html#_match_preparation" >
25
- rule book
26
- </q-btn >
27
- .
28
- </p >
29
20
<div class =" row justify-evenly" >
30
21
<div class =" q-pa-md" >
31
22
<ResetMatchButton />
@@ -82,5 +73,16 @@ import {teams} from "@/helpers";
82
73
<SwitchSidesRandomButton />
83
74
<EndMatchButton />
84
75
</div >
76
+
77
+ <div class =" q-ma-md" >
78
+ <p >
79
+ To set up a new match, go through this page from top to bottom.
80
+ The full procedure can be found in the
81
+ <q-btn color =" primary" target =" _blank"
82
+ href =" https://robocup-ssl.github.io/ssl-rules/sslrules.html#_match_preparation" >
83
+ rule book
84
+ </q-btn >
85
+ </p >
86
+ </div >
85
87
</div >
86
88
</template >
You can’t perform that action at this time.
0 commit comments