add global css file

This commit is contained in:
Kostya
2023-11-12 22:30:34 +03:00
parent 80a7a92345
commit 83de52c08a
3 changed files with 20 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
/* Global Settings */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* /Global Settings */
/* Header */
.header {
background: #161924;
}
/* /Header */

View File

@@ -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)

View File

@@ -14,6 +14,6 @@ export default {
} }
</script> </script>
<style> <style scoped>
</style> </style>