web: fix SiteShell not being full height

This commit is contained in:
Jens Langhammer 2021-02-19 15:34:21 +01:00
parent c23df5e1d5
commit 1c1f9b6cb8
2 changed files with 1 additions and 5 deletions

View File

@ -85,10 +85,6 @@ select[multiple] {
z-index: auto !important;
}
.pf-c-page__main {
display: block;
}
@media (prefers-color-scheme: dark) {
:root {
--ak-dark-foreground: #fafafa;

View File

@ -65,7 +65,7 @@ export class RouterOutlet extends LitElement {
console.debug(`authentik/router: route "${activeUrl}" not defined, defaulting to shell`);
const route = new Route(
RegExp(""),
html`<ak-site-shell url=${activeUrl}>
html`<ak-site-shell class="pf-c-page__main" url=${activeUrl}>
<div slot="body"></div>
</ak-site-shell>`
);