web: fix SiteShell not being full height
This commit is contained in:
parent
c23df5e1d5
commit
1c1f9b6cb8
|
@ -85,10 +85,6 @@ select[multiple] {
|
||||||
z-index: auto !important;
|
z-index: auto !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pf-c-page__main {
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (prefers-color-scheme: dark) {
|
@media (prefers-color-scheme: dark) {
|
||||||
:root {
|
:root {
|
||||||
--ak-dark-foreground: #fafafa;
|
--ak-dark-foreground: #fafafa;
|
||||||
|
|
|
@ -65,7 +65,7 @@ export class RouterOutlet extends LitElement {
|
||||||
console.debug(`authentik/router: route "${activeUrl}" not defined, defaulting to shell`);
|
console.debug(`authentik/router: route "${activeUrl}" not defined, defaulting to shell`);
|
||||||
const route = new Route(
|
const route = new Route(
|
||||||
RegExp(""),
|
RegExp(""),
|
||||||
html`<ak-site-shell url=${activeUrl}>
|
html`<ak-site-shell class="pf-c-page__main" url=${activeUrl}>
|
||||||
<div slot="body"></div>
|
<div slot="body"></div>
|
||||||
</ak-site-shell>`
|
</ak-site-shell>`
|
||||||
);
|
);
|
||||||
|
|
Reference in New Issue