0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-02 10:42:44 +00:00

Status bar nearly done, first pass on the split pane workign for edit page

This commit is contained in:
Scott Tolksdorf
2016-01-03 04:39:56 -05:00
parent 29d03c8263
commit 4ff1f3dc37
13 changed files with 255 additions and 74 deletions

View File

@@ -1,3 +1,24 @@
.editPage{
.paneSplit{
width : 100%;
max-height: 100%;
.leftPane, .rightPane{
display: inline-block;
vertical-align: top;
position: relative;
min-height: 100%;
}
.leftPane{
width : 40%;
}
.rightPane{
width : 60%;
overflow-y: scroll;
}
}
}