diff options
author | bobzel <zzzman@gmail.com> | 2020-08-05 22:48:49 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-08-05 22:48:49 -0400 |
commit | b6e1141aa6dd7757fdfc221579e2bf577d4bb9bc (patch) | |
tree | ced1bf0993738777336e29011f2b675cae602401 /src | |
parent | 1985e26afd1689a0e2880f5e8543fcd008f234d7 (diff) |
fixed properties panel height
Diffstat (limited to 'src')
-rw-r--r-- | src/client/views/MainView.tsx | 2 |
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> </>; } |