blob: 687a577776662d14931f76a03046806c60ef0df2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
@import '../../node_modules/materialize-css/sass/components/color-variables';
@import 'variables.scss';
@import '../../node_modules/materialize-css/sass/materialize.scss';
@import '../common/index.scss';
.progress.travel-progress {
background-color: color('purple', 'lighten-1');
& > .determinate {
background-color: color('purple', 'darken-1');
}
}
html {
background-color: $bg-color;
}
input[type=text],
input[type=password] {
color: $off-black;
}
|