chore(SetupFont): rename controlManager to typographySettingsStore for better semantic #37

Merged
ilia merged 83 commits from feature/united-widget into main 2026-04-22 10:04:41 +00:00
Showing only changes of commit 1d5af5ea70 - Show all commits
+5 -13
View File
@@ -3,21 +3,12 @@
Application shell with providers and page wrapper
-->
<script lang="ts">
/**
* Layout Component
*
* Root layout wrapper that provides the application shell structure. Handles favicon,
* toolbar provider initialization, and renders child routes with consistent structure.
*
* Layout structure:
* - Header area (currently empty, reserved for future use)
*
* - Footer area (currently empty, reserved for future use)
*/
import { themeManager } from '$features/ChangeAppTheme';
import G from '$shared/assets/G.svg';
import { ResponsiveProvider } from '$shared/lib';
import { Footer } from '$widgets/Footer';
import clsx from 'clsx';
import {
type Snippet,
onDestroy,
@@ -83,13 +74,14 @@ onDestroy(() => themeManager.destroy());
<div
id="app-root"
class={clsx(
'min-h-screen w-auto flex flex-col bg-surface dark:bg-dark-bg',
'min-h-screen w-auto flex flex-col bg-surface dark:bg-dark-bg relative',
theme === 'dark' ? 'dark' : '',
)}
>
{#if fontsReady}
{@render children?.()}
{/if}
<footer></footer>
<Footer />
</div>
</ResponsiveProvider>