Compare commits

..

1 Commits

Author SHA1 Message Date
311b4723ea split quests table, added ability to update quest 2018-06-20 13:45:31 -04:00

View File

@ -1,4 +1,5 @@
#header {
.header {
display: initial;
position: fixed;
top: 0;
left: 0;
@ -9,10 +10,15 @@
background-color: #dddddd;
}
#header li {
.header li {
display: inline;
}
#headerHidden {
display: none;
width: auto;
}
#questContainer {
display: flex;
overflow: auto;
@ -23,6 +29,9 @@
padding-right: 32%;
}
#newQPostArea {
}
#chatPane {
height: 100%;
width: 30%;
@ -38,14 +47,14 @@
flex: 1;
}
#messageBox {
#messageTextDiv {
padding-bottom: 10px;
width: 100%;
display: flex;
flex-direction: column;
}
#messageTextarea {
#messageTextArea {
resize: none;
box-sizing: border-box;
}