First version of side panel with person details.

Currently hidden. Can be shown by adding &sidePanel=true to URL.
Will be shown by default when it's ready.
This commit is contained in:
Przemek Wiech
2019-03-06 22:58:39 +01:00
parent 730642fb4e
commit 018bbe9ff0
7 changed files with 235 additions and 32 deletions

View File

@@ -12,9 +12,20 @@ body, html {
flex-direction: column;
}
#content {
flex: 1 1 auto;
display: flex;
}
#svgContainer {
flex: 1 1 auto;
overflow: scroll;
overflow: auto;
}
#sidePanel {
flex: 0 0 320px;
overflow: auto;
border-left: solid #ccc 1px;
}
.hidden {