Skip to content

Commit

Permalink
fix: height 100% on flexer and step view
Browse files Browse the repository at this point in the history
  • Loading branch information
KernelDeimos committed Oct 22, 2024
1 parent 368c20c commit c6bc42f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/gui/src/UI/Components/Flexer.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ export default def(class Flexer extends Component {

static CSS = `
:host > div {
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
Expand Down
5 changes: 4 additions & 1 deletion src/gui/src/UI/Components/StepView.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@ export default def(class StepView extends Component {
}

static CSS = `
#wrapper { display: none }
#wrapper {
display: none;
height: 100%;
}
* { -webkit-font-smoothing: antialiased;}
`;

Expand Down

0 comments on commit c6bc42f

Please sign in to comment.