style(frontend): add global base style for app

补充全局基础样式,统一页面字体、边距和背景色,修复页面初始样式错乱问题
This commit is contained in:
SunYF
2026-08-29 15:33:47 +08:00
parent ebf901ad16
commit 4736343859
+6 -1
View File
@@ -1,3 +1,8 @@
<template>
<router-view />
</template>
</template>
<style>
html, body, #app { height: 100%; margin: 0; font-family: -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif; }
body { background: #f0f2f5; }
</style>