diff options
author | Sam Potts <sam@potts.es> | 2020-04-24 00:32:16 +1000 |
---|---|---|
committer | Sam Potts <sam@potts.es> | 2020-04-24 00:32:16 +1000 |
commit | 3b521f73bd773dcb530746db47c90dbb1349b70b (patch) | |
tree | 371bb120c654d55d0016792b9412fc122735c1b8 /src/sass/utils/hidden.scss | |
parent | 27126b20bc5d2a3a8947c363d1f1887533f69688 (diff) | |
parent | 68137aa789b195b26d4306eaebc7fee2f8eb3374 (diff) | |
download | plyr-3b521f73bd773dcb530746db47c90dbb1349b70b.tar.lz plyr-3b521f73bd773dcb530746db47c90dbb1349b70b.tar.xz plyr-3b521f73bd773dcb530746db47c90dbb1349b70b.zip |
Merge branch 'develop' of github.com:sampotts/plyr into develop
# Conflicts:
# package.json
# yarn.lock
Diffstat (limited to 'src/sass/utils/hidden.scss')
-rw-r--r-- | src/sass/utils/hidden.scss | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/src/sass/utils/hidden.scss b/src/sass/utils/hidden.scss index a42c3be8..bdd96173 100644 --- a/src/sass/utils/hidden.scss +++ b/src/sass/utils/hidden.scss @@ -4,25 +4,25 @@ // Screen reader only elements .plyr__sr-only { - clip: rect(1px, 1px, 1px, 1px); - overflow: hidden; + clip: rect(1px, 1px, 1px, 1px); + overflow: hidden; - // !important is not always needed - @if $plyr-sr-only-important { - border: 0 !important; - height: 1px !important; - padding: 0 !important; - position: absolute !important; - width: 1px !important; - } @else { - border: 0; - height: 1px; - padding: 0; - position: absolute; - width: 1px; - } + // !important is not always needed + @if $plyr-sr-only-important { + border: 0 !important; + height: 1px !important; + padding: 0 !important; + position: absolute !important; + width: 1px !important; + } @else { + border: 0; + height: 1px; + padding: 0; + position: absolute; + width: 1px; + } } .plyr [hidden] { - display: none !important; + display: none !important; } |