initial Commit

This commit is contained in:
Niko Feith 2023-02-14 17:26:32 +01:00
parent 7bdf0f2eee
commit a2110c8594
5 changed files with 17 additions and 4 deletions

View File

@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/favicon.ico">
<link rel="icon" href="/CPS_White.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vite App</title>
</head>

View File

@ -14,6 +14,7 @@
"pinia": "^2.0.30",
"roslib": "^1.3.0",
"vue": "^3.2.45",
"vue-resource": "^1.5.3",
"vuetify": "^3.1.4"
},
"devDependencies": {

Binary file not shown.

After

Width:  |  Height:  |  Size: 100 KiB

View File

@ -33,5 +33,13 @@ const changeRosColor = () => {
</script>
<style scoped>
.cps-image{
left: 8px;
max-width: 48px;
max-height: 48px;
}
.image-divider{
position: absolute;
left: 64px;
}
</style>

View File

@ -4,8 +4,10 @@ import { createApp } from "vue";
import { createPinia } from "pinia";
// Vuetify
import 'vuetify/dist/vuetify.css';
import { createVuetify } from 'vuetify';
import 'vuetify/styles'
import { createVuetify } from 'vuetify'
import * as components from 'vuetify/components'
import * as directives from 'vuetify/directives'
import '@mdi/font/css/materialdesignicons.css'
@ -16,6 +18,8 @@ const vuetify = createVuetify({
theme: {
defaultTheme: 'dark',
},
components,
directives,
});
const app = createApp(App);