Add common stylesheets

This commit is contained in:
2026-05-06 22:20:52 +02:00
parent 5ba4485bf5
commit d4814edc65
3 changed files with 9 additions and 7 deletions
+1
View File
@@ -1,5 +1,6 @@
import { createApp } from 'vue' import { createApp } from 'vue'
import App from './App.vue' import App from './App.vue'
import router from './router' import router from './router'
import './styles/common.css'
createApp(App).use(router).mount('#app') createApp(App).use(router).mount('#app')
+8
View File
@@ -0,0 +1,8 @@
body {
margin: 0;
font-size: 16px;
}
#app {
min-height: 100vh;
}
-7
View File
@@ -1,10 +1,3 @@
body {
margin: 0;
min-height: 100vh;
background-color: #ffffff;
font-size: 16px;
}
form { form {
display: flex; display: flex;
justify-content: center; justify-content: center;