We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e211a1 commit c2bc222Copy full SHA for c2bc222
1 file changed
logic/classes.ts
@@ -2,7 +2,7 @@ import { areIntervalsOverlapping } from 'date-fns'
2
// too lazy to add types ;)
3
export function buttonOptions(checkClass: any) {
4
let tooltips: String[] = []
5
- let color = 'grey'
+ let color = 'primary'
6
let icon = 'mdi-plus'
7
let disabled = false
8
@@ -15,7 +15,7 @@ export function buttonOptions(checkClass: any) {
15
tooltips = ['Remove']
16
color = 'success'
17
} else {
18
- color = 'lime'
+ color = 'warning'
19
tooltips = ['Course added in Section: ' + sameCourse.section, 'Replace?']
20
icon = 'mdi-plus'
21
}
0 commit comments