disable click events on video container when offilne

This commit is contained in:
Ginger Wong 2020-07-18 17:18:58 -07:00
parent e12de3215f
commit 38a279485b

View File

@ -323,9 +323,11 @@ h2 {
#video {
transition: opacity .5s;
opacity: 0;
pointer-events: none;
}
.online #video {
opacity: 1;
pointer-events: auto;
}