You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
540 B
14 lines
540 B
$palette-colors: primary, secondary, tertiary, info, success, warning, error, dark;
|
|
|
|
$sizes: small, medium, large;
|
|
|
|
$breakpoint-xs: 0px;
|
|
$breakpoint-sm: 600px;
|
|
$breakpoint-md: 960px;
|
|
$breakpoint-lg: 1280px;
|
|
$breakpoint-xl: 1920px;
|
|
$breakpoint-xxl: 2560px;
|
|
|
|
$breakpoints: ( xs: $breakpoint-xs, sm: $breakpoint-sm, md: $breakpoint-md, lg: $breakpoint-lg, xl: $breakpoint-xl, xxl: $breakpoint-xxl );
|
|
$breakpoints-css-utilities-only: ( sm: $breakpoint-sm, md: $breakpoint-md, lg: $breakpoint-lg, xl: $breakpoint-xl, xxl: $breakpoint-xxl );
|