Skip to content

Commit

Permalink
feat: redeclared all sass variables as !default (jquense#1321)
Browse files Browse the repository at this point in the history
  • Loading branch information
DevelopmentByDavid authored and jquense committed May 15, 2019
1 parent 8480413 commit c4f09cd
Showing 1 changed file with 22 additions and 22 deletions.
44 changes: 22 additions & 22 deletions src/sass/variables.scss
@@ -1,33 +1,33 @@

$out-of-range-color: lighten(#333, 40%);
$out-of-range-bg-color: lighten(#333, 70%);
$out-of-range-color: lighten(#333, 40%) !default;
$out-of-range-bg-color: lighten(#333, 70%) !default;

$calendar-border: #DDD;
$cell-border: #DDD;
$calendar-border: #DDD !default;
$cell-border: #DDD !default;

$border-color: #CCC;
$border-color: #CCC !default;

$segment-width: percentage(1 / 7);
$segment-width: percentage(1 / 7) !default;

$time-selection-color: white;
$time-selection-bg-color: rgba(0,0,0, .50);
$date-selection-bg-color: rgba(0,0,0, .10);
$time-selection-color: white !default;
$time-selection-bg-color: rgba(0,0,0, .50) !default;
$date-selection-bg-color: rgba(0,0,0, .10) !default;


$event-bg: #3174ad;
$event-border: darken(#3174ad, 10%);
$event-outline: #3b99fc;
$event-color: #fff;
$event-border-radius: 5px;
$event-padding: 2px 5px;
$event-zindex: 4;
$event-bg: #3174ad !default;
$event-border: darken(#3174ad, 10%) !default;
$event-outline: #3b99fc !default;
$event-color: #fff !default;
$event-border-radius: 5px !default;
$event-padding: 2px 5px !default;
$event-zindex: 4 !default;

$btn-color: #373a3c;
$btn-bg: #fff;
$btn-border: #ccc;
$btn-color: #373a3c !default;
$btn-bg: #fff !default;
$btn-border: #ccc !default;

$current-time-color: #74ad31;
$current-time-color: #74ad31 !default;

$rbc-css-prefix: rbc-i;
$rbc-css-prefix: rbc-i !default;

$today-highlight-bg: #eaf6ff;
$today-highlight-bg: #eaf6ff !default;

0 comments on commit c4f09cd

Please sign in to comment.