10 lines
384 B
SCSS
10 lines
384 B
SCSS
// ==========================================================================
|
|
// Breakpoints
|
|
// NOTE: we can't use CSS variables for breakpoints unfortunately
|
|
// https://www.w3.org/TR/css-variables-1/#using-variables
|
|
// ==========================================================================
|
|
|
|
$plyr-bp-sm: 480px !default;
|
|
$plyr-bp-md: 768px !default;
|
|
$plyr-bp-lg: 1024px !default;
|