Add updates page scaffold

This commit is contained in:
Zerebos
2026-05-21 00:52:26 +00:00
parent 3dad4bc729
commit f988641446
5 changed files with 435 additions and 6 deletions
+4 -1
View File
@@ -10,6 +10,7 @@
import Downloads from "@features/downloads/components/Downloads.svelte";
import Extensions from "@features/extensions/components/Extensions.svelte";
import Tracking from "@features/tracking/components/Tracking.svelte";
import Updates from "@features/updates/components/Updates.svelte";
</script>
<div class="frame">
@@ -24,6 +25,8 @@
<Home />
{:else if store.navPage === "library"}
<Library />
{:else if store.navPage === "updates"}
<Updates />
{:else if store.navPage === "search"}
<Search />
{:else if store.navPage === "history"}
@@ -45,4 +48,4 @@
.frame { display: flex; padding: 6px 15px 15px; width: 100%; height: 100%; box-sizing: border-box; overflow: hidden; }
.shell { display: flex; flex: 1; border-radius: 14px; overflow: hidden; border: 1px solid var(--border-dim); background: var(--bg-base); background-image: var(--bg-image); min-height: 0; min-width: 0; }
.main { flex: 1; overflow: hidden; background: var(--bg-surface); transform: translateZ(0); contain: layout style; min-width: 0; }
</style>
</style>