Simplify board view

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2017-06-23 21:47:26 +02:00
committed by Julius Härtl
parent 27d99f4a50
commit 6a2dbf61d9
2 changed files with 14 additions and 5 deletions

View File

@@ -132,7 +132,7 @@ button.button-inline:hover {
top: 44px;
}
#board #innerBoard {
#innerBoard {
padding: 10px;
}
@@ -256,9 +256,7 @@ button.button-inline:hover {
.stack {
width: 100%;
margin-right: 10px;
vertical-align: top;
background-color: #f8f8f8;
}
.stack h2 {
@@ -997,10 +995,22 @@ button.button-inline:hover {
display: none;
}
#innerBoard {
display: flex;
}
.stack {
width: 320px;
min-width: 320px;
display: inline-block;
border-right: 1px solid #eee;
margin-right: 10px;
padding-right: 10px;
}
.stack:last-child {
border-right: 1px solid transparent;
}
.stack h2 button {
display: none;
}