Bastien commited on
Commit
139bb50
·
1 Parent(s): b449fec

Add !default (#103)

Browse files
Files changed (1) hide show
  1. src/driver.scss +12 -12
src/driver.scss CHANGED
@@ -1,18 +1,18 @@
1
- $text-color: #2d2d2d;
2
- $popover-bg: #ffffff;
3
- $stage-bg: #ffffff;
4
- $button-bg: #f1f1f1;
5
- $disabled-btn-color: #808080;
6
 
7
- $popover-z-index: 1000000000;
8
- $overlay-z-index: 100002;
9
- $stage-z-index: 100003;
10
- $highlighted-element-z-index: 100004;
11
 
12
  // If you update this duration, make sure to
13
  // update `ANIMATION_DURATION_MS` constant
14
- $animation-ms: 400;
15
- $animation-sec: ($animation-ms / 1000) * 1s;
16
 
17
  div#driver-popover-item {
18
  display: none;
@@ -211,4 +211,4 @@ div#driver-highlighted-element-stage {
211
  -o-transform-box: border-box !important;
212
  transform-box: border-box !important;
213
  will-change: unset !important;
214
- }
 
1
+ $text-color: #2d2d2d !default;
2
+ $popover-bg: #ffffff !default;
3
+ $stage-bg: #ffffff !default;
4
+ $button-bg: #f1f1f1 !default;
5
+ $disabled-btn-color: #808080 !default;
6
 
7
+ $popover-z-index: 1000000000 !default;
8
+ $overlay-z-index: 100002 !default;
9
+ $stage-z-index: 100003 !default;
10
+ $highlighted-element-z-index: 100004 !default;
11
 
12
  // If you update this duration, make sure to
13
  // update `ANIMATION_DURATION_MS` constant
14
+ $animation-ms: 400 !default;
15
+ $animation-sec: ($animation-ms / 1000) * 1s !default;
16
 
17
  div#driver-popover-item {
18
  display: none;
 
211
  -o-transform-box: border-box !important;
212
  transform-box: border-box !important;
213
  will-change: unset !important;
214
+ }