style: 调整样式

This commit is contained in:
2026-02-03 13:22:07 +08:00
parent 6a9fad0fc0
commit 2fc27015b5
3 changed files with 4 additions and 20 deletions

View File

@@ -1,12 +1,9 @@
body,
html,
div,
p,
ul,
li,
h1,
h2,
h3,
p {
ol,
li {
margin: 0;
padding: 0;
}

View File

@@ -1,16 +1,3 @@
body,
html,
div,
ul,
li,
h1,
h2,
h3,
p {
margin: 0;
padding: 0;
}
html,
body,
#app {

View File

@@ -3,6 +3,7 @@ import { createApp } from 'vue'
import App from './App.vue'
import router from './router'
import store from './stores/index'
import 'normalize.css'
import './assets/css/style.css'
import SvgIcon from "@/components/SvgIcon/index.vue";
import "virtual:svg-icons-register";
@@ -14,7 +15,6 @@ import flexible from "./utils/flexible.js";
import "./router/router-config" // 路由守卫,做动态路由的地方
import ElementPlus from 'element-plus'
import 'element-plus/dist/index.css'
import 'normalize.css'
const app = createApp(App)
app.use(router)