mirror of
https://github.com/yawaflua/LuckyDiamond.git
synced 2025-12-10 04:09:29 +02:00
add global css file
This commit is contained in:
17
luckydiamond/src/assets/css/global.css
Normal file
17
luckydiamond/src/assets/css/global.css
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
/* Global Settings */
|
||||||
|
|
||||||
|
* {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* /Global Settings */
|
||||||
|
|
||||||
|
/* Header */
|
||||||
|
|
||||||
|
.header {
|
||||||
|
background: #161924;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* /Header */
|
||||||
@@ -3,6 +3,8 @@ import App from './App.vue'
|
|||||||
|
|
||||||
import router from "@/router/router";
|
import router from "@/router/router";
|
||||||
|
|
||||||
|
import '@/assets/css/global.css'
|
||||||
|
|
||||||
const app = createApp(App)
|
const app = createApp(App)
|
||||||
app.use(router)
|
app.use(router)
|
||||||
|
|
||||||
|
|||||||
@@ -14,6 +14,6 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style>
|
<style scoped>
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
Reference in New Issue
Block a user