diff --git a/src/components/layout/index.vue b/src/components/layout/index.vue index 7fb5c18..64f243b 100644 --- a/src/components/layout/index.vue +++ b/src/components/layout/index.vue @@ -33,7 +33,7 @@ --> - + diff --git a/src/main.js b/src/main.js index 89e81c0..dfa3a64 100644 --- a/src/main.js +++ b/src/main.js @@ -1,5 +1,5 @@ import { createApp } from 'vue' -import './style.css' +import '@/style/index.css'; import App from './App.vue' import TDesign from 'tdesign-vue-next'; diff --git a/src/style.css b/src/style/index.css similarity index 99% rename from src/style.css rename to src/style/index.css index 068a421..feb577f 100644 --- a/src/style.css +++ b/src/style/index.css @@ -1,3 +1,4 @@ +@import "./theme.css"; body { margin: 0; } diff --git a/src/style/theme.css b/src/style/theme.css new file mode 100644 index 0000000..6092539 --- /dev/null +++ b/src/style/theme.css @@ -0,0 +1,3 @@ +body { + margin: 0; +} \ No newline at end of file