Fix menus hiding under footer

This commit is contained in:
Bartek Fabiszewski 2017-04-14 19:40:29 +02:00
parent 7088d326ab
commit 13bbd0812c

View File

@ -73,16 +73,18 @@ select {
width: 165px; width: 165px;
height: 100%; height: 100%;
background-color: #666; background-color: #666;
overflow: hidden; overflow-x: hidden;
overflow-y: auto;
} }
#menu-content { #menu-content {
padding: 10px; padding: 10px 0 3em 10px;
} }
#footer { #footer {
position: fixed; position: fixed;
width: 165px;
bottom:0; bottom:0;
padding: 10px; width: 165px;
line-height: 3em;
padding-left: 10px;
background-color:rgba(102, 102, 102, 0.9); background-color:rgba(102, 102, 102, 0.9);
color: lightgray; color: lightgray;
} }