fix white bar in chrome when fullscreen

This commit is contained in:
Toad King 2018-01-14 21:10:15 -06:00
parent a682ccd8e8
commit 4498e9ffba

View File

@ -92,8 +92,13 @@ textarea {
font-size: 0.7em;
height: 95%;
width: 95%;
border-style: none;
border-color: transparent;
border-style: none;
border-color: transparent;
overflow: auto;
resize: none;
}
/* fix weird white bar in chrome when fullscreen */
:-webkit-full-screen {
height: 100%;
}