diff --git a/pointMaster/js/src/components/HelloWorld.vue b/pointMaster/js/src/components/HelloWorld.vue
deleted file mode 100644
index 634057f..0000000
--- a/pointMaster/js/src/components/HelloWorld.vue
+++ /dev/null
@@ -1,104 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/pointMaster/js/src/components/Stats.vue b/pointMaster/js/src/components/Stats.vue
index f4526a9..139345e 100644
--- a/pointMaster/js/src/components/Stats.vue
+++ b/pointMaster/js/src/components/Stats.vue
@@ -143,14 +143,16 @@ export default defineComponent({
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
margin: auto;
}
-}
-.stat-title {
+ &-title {
font-weight: 700;
font-size: 1.25rem;
-}
+ margin: 0;
+ }
-.stat .stat-value {
- font-size: 2rem;
+ &-value {
+ font-weight: 400;
+ font-size: 1.5rem;
+}
}
diff --git a/pointMaster/js/src/main.ts b/pointMaster/js/src/main.ts
index 80b62fb..5f0f572 100644
--- a/pointMaster/js/src/main.ts
+++ b/pointMaster/js/src/main.ts
@@ -1,7 +1,5 @@
import { createApp } from "vue";
-import HelloWorld from "./components/HelloWorld.vue";
import Stats from "./components/Stats.vue";
-import Test from "./components/Test.vue";
const app = createApp({});
diff --git a/pointMaster/js/vue.config.js b/pointMaster/js/vue.config.js
index c8ed6c0..042592e 100644
--- a/pointMaster/js/vue.config.js
+++ b/pointMaster/js/vue.config.js
@@ -4,6 +4,14 @@ module.exports = {
publicPath: "./", // Use relative paths for assets
filenameHashing: false, // Disable hash in filenames
runtimeCompiler: true, // Enable runtime compilation
+ css: {
+ extract: false,
+ loaderOptions: {
+ sass: {
+ implementation: require('sass'),
+ }
+ }
+ },
configureWebpack: {
resolve: {
extensions: ['.vue', '.js', '.json'],