Skip to content

Commit c6bc42f

Browse files
committed
fix: height 100% on flexer and step view
1 parent 368c20c commit c6bc42f

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/gui/src/UI/Components/Flexer.js

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ export default def(class Flexer extends Component {
3434

3535
static CSS = `
3636
:host > div {
37+
height: 100%;
3738
display: flex;
3839
flex-direction: column;
3940
justify-content: center;

src/gui/src/UI/Components/StepView.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,10 @@ export default def(class StepView extends Component {
3030
}
3131

3232
static CSS = `
33-
#wrapper { display: none }
33+
#wrapper {
34+
display: none;
35+
height: 100%;
36+
}
3437
* { -webkit-font-smoothing: antialiased;}
3538
`;
3639

0 commit comments

Comments
 (0)