fix(large-video): apply blur to only one container

This commit is contained in:
Leonard Kim 2018-05-01 12:11:28 -07:00 committed by Дамян Минков
parent d94093a01e
commit 0831c16d7e
1 changed files with 3 additions and 1 deletions

View File

@ -15,7 +15,6 @@
#largeVideoBackgroundContainer, #largeVideoBackgroundContainer,
.large-video-background { .large-video-background {
height: 100%; height: 100%;
filter: blur(40px);
left: 0; left: 0;
overflow: hidden; overflow: hidden;
position: absolute; position: absolute;
@ -32,6 +31,9 @@
width: 100%; width: 100%;
} }
} }
#largeVideoBackgroundContainer {
filter: blur(40px);
}
.videocontainer { .videocontainer {
position: relative; position: relative;