Fix bug where scrolling wouldn't work, resolves issue #6

This commit is contained in:
Nick Krichevsky 2015-02-26 09:06:20 -05:00
parent ac1a5ff6e4
commit 08c4bf588e

View file

@ -1,12 +1,15 @@
html{ html{
height:600px; height:600px;
max-height: 600px; max-height: 600px;
overflow-y:scroll;
overflow-x: hidden;
} }
body{ body{
height:600px; height:600px;
max-height:600px; max-height:600px;
width:400px; width:400px;
overflow:scroll; overflow-y:scroll;
overflow-x: hidden;
margin:0px; margin:0px;
} }
ul#windows{ ul#windows{
@ -75,7 +78,6 @@ li.window>span.textContent{
padding-bottom: 7px; padding-bottom: 7px;
padding-left:11px; padding-left:11px;
display:block; display:block;
width: 100%;
background-color: #778899; background-color: #778899;
font-weight: bold; font-weight: bold;
color:#E1E6F7; color:#E1E6F7;