Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
### 🐛 Bug fixes

- Fixed CSS styling of background colour and let the application have full height
- Fixed a bug regarding the scrollbar appearing on the /graph and /generate pages

### 🔧 Internal changes

Expand Down
4 changes: 3 additions & 1 deletion js/components/generate/GenerateForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,9 @@ export default class GenerateForm extends React.Component {
return (
<>
<NavBar selected_page="generate" open_modal={undefined}></NavBar>
<div style={{ display: "flex", flexDirection: "row", height: "100%" }}>
<div
style={{ display: "flex", flexDirection: "row", height: "calc(100% - 50px)" }}
>
<Disclaimer />
<div
id="generateDiv"
Expand Down
3 changes: 2 additions & 1 deletion style/app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ ol {

#react-graph {
display: inline-block;
height: 100%;
height: calc(100% - 50px);
margin: 0;
overflow: hidden;
position: absolute;
Expand Down Expand Up @@ -2013,6 +2013,7 @@ div[id*="_inq"] .code::after {

#generateRoot #react-graph {
position: static;
height: 100%;
background-color: #f0f5f8;
}

Expand Down