diff options
author | Robin Poort <robin@timble.net> | 2016-05-11 13:46:40 +0200 |
---|---|---|
committer | Robin Poort <robin@timble.net> | 2016-05-11 13:46:40 +0200 |
commit | b23a16826ea2d9ee749449612f21c826d49c5616 (patch) | |
tree | aee9f2a79ffd13b0f00bbda4e726494f468d75d3 /src/scss/variables.scss | |
parent | 2a822d7b45e83972ee84d3b5118c027258d70f5e (diff) | |
download | plyr-b23a16826ea2d9ee749449612f21c826d49c5616.tar.lz plyr-b23a16826ea2d9ee749449612f21c826d49c5616.tar.xz plyr-b23a16826ea2d9ee749449612f21c826d49c5616.zip |
Adding SCSS settings
- Added setting to be able to disable the border-box if you already defined that in your own css
- Added setting to be able to disable touch-action if you already defined that in your own css
- Added setting to choose not to use !important for sr-only class
Diffstat (limited to 'src/scss/variables.scss')
-rw-r--r-- | src/scss/variables.scss | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/scss/variables.scss b/src/scss/variables.scss index baf47e25..7cc7e34c 100644 --- a/src/scss/variables.scss +++ b/src/scss/variables.scss @@ -4,6 +4,11 @@ // https://robots.thoughtbot.com/sass-default // ========================================================================== +// Settings +$plyr-border-box: true !default; +$plyr-touch-action: true !default; +$plyr-sr-only-important: true !default; + // Colors $plyr-color-main: #3498db !default; |