refactor(layout): update main class for embed and status pages

This commit is contained in:
Raj Nandan Sharma
2026-06-19 22:34:03 +05:30
parent ba1d0079de
commit a925791671
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -40,7 +40,7 @@
}
</style>`}
</svelte:head>
<main class="kener-public">
<main class="kener-public embed-app">
{@render children()}
</main>
+1 -1
View File
@@ -53,7 +53,7 @@
</style>`}
<script src={clientResolver(resolve, "/capture.js")}></script>
</svelte:head>
<main class="kener-public">
<main class="kener-public status-page-app">
<!-- Nav -->
<KenerNav />
<!-- Body -->
+2 -2
View File
@@ -329,7 +329,7 @@ body::-webkit-scrollbar {
stays transparent, so page content shows through both sections while scrolling. This paints
one blurred layer behind both: above page content, below the nav (z-10) and the bar (z-20).
Override --top-glass-h if the nav/bar wrap onto extra lines. */
.kener-public::before {
.kener-public.status-page-app::before {
content: "";
position: fixed;
inset: 0 0 auto 0;
@@ -340,6 +340,6 @@ body::-webkit-scrollbar {
backdrop-filter: blur(12px);
pointer-events: none;
}
:is(.dark) .kener-public::before {
:is(.dark) .kener-public.status-page-app::before {
background-color: color-mix(in oklab, var(--background) 70%, transparent);
}