diff options
author | Danielh112 <Daniel@sbgsportssoftware.com> | 2020-08-18 11:29:25 +0100 |
---|---|---|
committer | Danielh112 <Daniel@sbgsportssoftware.com> | 2020-08-18 11:29:25 +0100 |
commit | f7e9ee56d2ed5447f59e5548f005fabdab2f0a72 (patch) | |
tree | a16300fa62e68b3310ae96e36dba65981f0024ef /src/sass/components/volume.scss | |
parent | 22af7f16ea4a4269321d29242d63ec23718c92da (diff) | |
parent | 423b7b276f1572eb666de32094a9aacd32e87d18 (diff) | |
download | plyr-f7e9ee56d2ed5447f59e5548f005fabdab2f0a72.tar.lz plyr-f7e9ee56d2ed5447f59e5548f005fabdab2f0a72.tar.xz plyr-f7e9ee56d2ed5447f59e5548f005fabdab2f0a72.zip |
Fix merge conflicts
Diffstat (limited to 'src/sass/components/volume.scss')
-rw-r--r-- | src/sass/components/volume.scss | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/src/sass/components/volume.scss b/src/sass/components/volume.scss index 614b35f5..be82f536 100644 --- a/src/sass/components/volume.scss +++ b/src/sass/components/volume.scss @@ -3,23 +3,23 @@ // -------------------------------------------------------------- .plyr__volume { - align-items: center; - display: flex; - max-width: 110px; - min-width: 80px; - position: relative; - width: 20%; + align-items: center; + display: flex; + max-width: 110px; + min-width: 80px; + position: relative; + width: 20%; - input[type='range'] { - margin-left: ($plyr-control-spacing / 2); - margin-right: ($plyr-control-spacing / 2); - position: relative; - z-index: 2; - } + input[type='range'] { + margin-left: calc(#{$plyr-control-spacing} / 2); + margin-right: calc(#{$plyr-control-spacing} / 2); + position: relative; + z-index: 2; + } } // Auto size on iOS as there's no slider .plyr--is-ios .plyr__volume { - min-width: 0; - width: auto; + min-width: 0; + width: auto; } |