1
0
mirror of https://github.com/aclindsa/moneygo.git synced 2025-07-02 04:18:38 -04:00

Expand main TabPane's to remainder of viewable page

This commit is contained in:
2015-07-05 21:39:02 -04:00
parent 5be612cee8
commit 7e7b356c8f
2 changed files with 41 additions and 16 deletions

View File

@ -1,13 +1,37 @@
html, body {
height: 100%;
}
div#content {
display: block;
width: 95%;
height: 100%;
min-width: 75em;
max-width: 100em;
display: block;
margin-left: auto;
margin-right: auto;
margin: auto;
}
/* Keep the main windows sized to the full viewable height */
.fullheight {
height: 100%;
}
.ui {
display: flex;
flex-flow: column;
}
.ui > div:nth-child(1), .ui > div:nth-child(2) > nav {
flex: none;
}
.ui > div:nth-child(2) {
display: flex;
flex: auto;
flex-flow: column;
}
.ui > div:nth-child(2) > div {
flex: auto;
}
/* Style the account tree */
div.accounttree-root-nochildren {
position: relative;
left: 24px;