rebuild(stage-4): deliver shared shell and account interfaces

This commit is contained in:
leefer
2026-07-30 02:08:20 +08:00
parent d1c658d8ef
commit 3b75bf2d63
47 changed files with 3042 additions and 99 deletions
+8
View File
@@ -3,7 +3,15 @@ import { createApp } from "vue";
import App from "./app/App.vue";
import router from "./app/router";
import { applyTheme, preferredTheme } from "./shared/stores/ui";
import "./shared/styles/tokens.css";
import "./shared/styles/base.css";
import "./shared/styles/components.css";
import "./shared/styles/shell.css";
import "./shared/styles/auth.css";
import "./shared/styles/account.css";
import "./shared/styles/system.css";
import "./shared/styles/mobile.css";
applyTheme(preferredTheme());
createApp(App).use(createPinia()).use(router).mount("#app");