fix: height 100% on flexer and step view

This commit is contained in:
KernelDeimos 2024-10-22 18:10:16 -04:00
parent 368c20cf57
commit c6bc42f551
2 changed files with 5 additions and 1 deletions

View File

@ -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;

View File

@ -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;}
`;