web: fix library not being full height, again

This commit is contained in:
Jens Langhammer 2021-02-24 09:21:16 +01:00
parent bd48955f39
commit d99a415502
1 changed files with 6 additions and 1 deletions

View File

@ -55,7 +55,12 @@ export class LibraryPage extends LitElement {
apps?: AKResponse<Application>;
static get styles(): CSSResult[] {
return COMMON_STYLES;
return COMMON_STYLES.concat(css`
:host,
main {
height: 100%;
}
`);
}
firstUpdated(): void {