web: fix height on table pages

This commit is contained in:
Jens Langhammer 2021-02-19 16:19:44 +01:00
parent 6e11fd0f2e
commit cd23053007
1 changed files with 5 additions and 0 deletions

View File

@ -28,6 +28,11 @@ export class RouterOutlet extends LitElement {
:host { :host {
height: 100vh; height: 100vh;
} }
*:first-child {
height: 100%;
display: flex;
flex-direction: column;
}
`, `,
].concat(...COMMON_STYLES); ].concat(...COMMON_STYLES);
} }