diff options
author | Som Meaden <som@theprojectsomething.com> | 2020-04-04 14:00:03 +1000 |
---|---|---|
committer | Som Meaden <som@theprojectsomething.com> | 2020-04-04 14:00:03 +1000 |
commit | a55bf00d0fe95b4d4328eb3039a363d808f8880d (patch) | |
tree | 63a0a6cfcaa54b185b27339299392e8f91774e7c | |
parent | 49ed2cac4eff3ff3eae7a2c72e5280a302906f7d (diff) | |
download | plyr-a55bf00d0fe95b4d4328eb3039a363d808f8880d.tar.lz plyr-a55bf00d0fe95b4d4328eb3039a363d808f8880d.tar.xz plyr-a55bf00d0fe95b4d4328eb3039a363d808f8880d.zip |
minor demo fix for fallback mode (inline style was overriding plyr stylesheet)
-rw-r--r-- | demo/index.html | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/demo/index.html b/demo/index.html index d8c393c6..2adae323 100644 --- a/demo/index.html +++ b/demo/index.html @@ -184,10 +184,12 @@ <!-- BEGIN FULLSCREEN OVERLAY EXAMPLE --> <style> #container { - position: relative; - margin-top: 16px; overflow: hidden; } + #container:not(.plyr--fullscreen-fallback) { + position: relative; + margin-top: 16px; + } .plyr { margin-top: 0; } |