aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2020-08-05 22:48:49 -0400
committerbobzel <zzzman@gmail.com>2020-08-05 22:48:49 -0400
commitb6e1141aa6dd7757fdfc221579e2bf577d4bb9bc (patch)
treeced1bf0993738777336e29011f2b675cae602401
parent1985e26afd1689a0e2880f5e8543fcd008f234d7 (diff)
fixed properties panel height
-rw-r--r--src/client/views/MainView.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/MainView.tsx b/src/client/views/MainView.tsx
index 845e93ecb..007d531c8 100644
--- a/src/client/views/MainView.tsx
+++ b/src/client/views/MainView.tsx
@@ -617,7 +617,7 @@ export class MainView extends React.Component {
</div>
}
{this.propertiesWidth() < 10 ? (null) :
- <div style={{ width: this.propertiesWidth() }}> {this.propertiesView} </div>}
+ <div style={{ width: this.propertiesWidth(), height: "calc(100% - 35px)" }}> {this.propertiesView} </div>}
</div>
</>;
}