33// Variables should follow the `$component-state-property-size` formula for
44// consistent naming. Ex: $nav-link-disabled-color and $modal-content-box-shadow-xs.
55
6-
76//
87// Color system
98//
@@ -159,6 +158,7 @@ $grid-breakpoints: (
159158 lg : 992px ,
160159 xl : 1200px
161160) !default ;
161+
162162@include _assert-ascending ($grid-breakpoints , " $grid-breakpoints" );
163163@include _assert-starts-at-zero ($grid-breakpoints );
164164
@@ -173,6 +173,7 @@ $container-max-widths: (
173173 lg : 960px ,
174174 xl : 1140px
175175) !default ;
176+
176177@include _assert-ascending ($container-max-widths , " $container-max-widths" );
177178
178179
@@ -188,7 +189,7 @@ $container-max-widths: (
188189// Define common padding and border radius sizes and more.
189190
190191$line-height-lg : 1.5 !default ;
191- $line-height-sm : 1.0 !default ;
192+ $line-height-sm : 1 !default ;
192193
193194$border-width : 1px !default ;
194195$border-color : theme-color (" light" ) !default ;
@@ -317,9 +318,9 @@ $input-btn-padding-x-lg: 1rem !default;
317318$input-btn-line-height-lg : 1.5 !default ;
318319
319320$btn-font-weight : $font-weight-normal !default ;
320- $btn-box-shadow : inset 0 1px 0 rgba ($theme-color-inverse ,.15 ), 0 1px 1px rgba ($theme-color-darkest ,.075 ) !default ;
321+ $btn-box-shadow : inset 0 1px 0 rgba ($theme-color-inverse , .15 ), 0 1px 1px rgba ($theme-color-darkest , .075 ) !default ;
321322$btn-focus-box-shadow : 0 0 0 3px rgba ($theme-color-primary , .25 ) !default ;
322- $btn-active-box-shadow : inset 0 3px 5px rgba ($theme-color-darkest ,.125 ) !default ;
323+ $btn-active-box-shadow : inset 0 3px 5px rgba ($theme-color-darkest , .125 ) !default ;
323324
324325$btn-link-disabled-color : theme-colors (" disabled" ) !default ;
325326
@@ -339,9 +340,9 @@ $input-bg: $white !default;
339340$input-disabled-bg : theme-color (" light" ) !default ;
340341
341342$input-color : $gray-700 !default ;
342- $input-border-color : rgba ($theme-color-darkest ,.15 ) !default ;
343+ $input-border-color : rgba ($theme-color-darkest , .15 ) !default ;
343344$input-btn-border-width : $border-width !default ; // For form controls and buttons
344- $input-box-shadow : inset 0 1px 1px rgba ($theme-color-darkest ,.075 ) !default ;
345+ $input-box-shadow : inset 0 1px 1px rgba ($theme-color-darkest , .075 ) !default ;
345346
346347$input-border-radius : $border-radius !default ;
347348$input-border-radius-lg : $border-radius-lg !default ;
@@ -476,10 +477,10 @@ $dropdown-min-width: 10rem !default;
476477$dropdown-padding-y : .5rem !default ;
477478$dropdown-spacer : .125rem !default ;
478479$dropdown-bg : $white !default ;
479- $dropdown-border-color : rgba ($theme-color-darkest ,.15 ) !default ;
480+ $dropdown-border-color : rgba ($theme-color-darkest , .15 ) !default ;
480481$dropdown-border-width : $border-width !default ;
481482$dropdown-divider-bg : theme-color (" light" ) !default ;
482- $dropdown-box-shadow : 0 .5rem 1rem rgba ($theme-color-darkest ,.175 ) !default ;
483+ $dropdown-box-shadow : 0 .5rem 1rem rgba ($theme-color-darkest , .175 ) !default ;
483484
484485$dropdown-link-color : theme-color (" darkest" ) !default ;
485486$dropdown-link-hover-color : darken ($theme-color-darkest , 5% ) !default ;
0 commit comments