From 152c4cbe31e86d5f933d9ba69512c6d4a6f0e174 Mon Sep 17 00:00:00 2001
From: hejianhao <15708179461@qq.com>
Date: 星期三, 26 三月 2025 11:03:34 +0800
Subject: [PATCH] 分组件

---
 src/App.vue |   30 ++++++++++++++++++------------
 1 files changed, 18 insertions(+), 12 deletions(-)

diff --git a/src/App.vue b/src/App.vue
index f3a2709..c4454e1 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -4,20 +4,26 @@
   </div>
 </template>
 
-<script>
-export default {
-  name: 'App',
-  data() {
-    return {
-
-    }
-  },
-}
-</script>
-
 <style>
-#app {
+* {
   margin: 0;
   padding: 0;
+  box-sizing: border-box;
+}
+
+html,
+body {
+  width: 100%;
+  height: 100%;
+  overflow: hidden;
+  background: #000033;
+}
+
+#app {
+  -webkit-font-smoothing: antialiased;
+  -moz-osx-font-smoothing: grayscale;
+  width: 100%;
+  height: 100%;
+  overflow: hidden;
 }
 </style>
\ No newline at end of file

--
Gitblit v1.7.1