diff --git a/public/page/about/AboutPage.jsx b/public/page/about/AboutPage.jsx index 033bf45..1e95c47 100644 --- a/public/page/about/AboutPage.jsx +++ b/public/page/about/AboutPage.jsx @@ -54,7 +54,9 @@ const AboutPage = (props) => { diff --git a/public/styles/objects/_video.scss b/public/styles/objects/_video.scss index 637a47d..6a86507 100644 --- a/public/styles/objects/_video.scss +++ b/public/styles/objects/_video.scss @@ -19,14 +19,17 @@ object-fit:cover; } -$o-video__loader-z: 1; $o-video__fallback-z: 0; +$o-video__video-z: 1; +$o-video__loader-z: 2; .o-video { position: relative; &__video { width: 100%; + position: relative;//Needed by some browser to allow the Z-Index to apply + z-index: $o-video__video-z; &.is-full { @extend %o-video__media-cover; diff --git a/public/video/Video.jsx b/public/video/Video.jsx index e24e6e6..005a991 100644 --- a/public/video/Video.jsx +++ b/public/video/Video.jsx @@ -69,7 +69,6 @@ export default class Video extends React.Component { //React Render render() { - //TODO: Add image fallback support. //TODO: Add state support, as well as functional controls. //Sources