-
+
@@ -684,13 +684,13 @@ export default {
margin-left: 20px;
}
-.choser {
+.chooser {
display: flex;
align-items: center;
flex-direction: column;
}
-.choser button {
+.chooser button {
font-family: Nunito-Bold !important;
color: rgb(201, 201, 201);
text-decoration: none;
@@ -706,23 +706,23 @@ export default {
transition: all 0.15s cubic-bezier(0.165, 0.74, 0.44, 1);
}
-.choser .active {
+.chooser .active {
background-color: rgba(var(--accent-color), 0.4);
}
-.choser button:first-child {
+.chooser button:first-child {
border-radius: 10px;
border-bottom-right-radius: 0px;
border-bottom-left-radius: 0px;
}
-.choser button:last-child {
+.chooser button:last-child {
border-radius: 10px;
border-top-right-radius: 0px;
border-top-left-radius: 0px;
}
-.choser button:hover {
+.chooser button:hover {
background-color: rgba(var(--accent-color), 0.4);
transition: all 0.15s cubic-bezier(0.165, 0.74, 0.44, 1);
}
diff --git a/src/js/main.js b/src/js/main.js
index b9b6ce94..3128ea2f 100644
--- a/src/js/main.js
+++ b/src/js/main.js
@@ -1,4 +1,4 @@
-import { createApp } from 'vue'
-import App from '../App.vue'
+import { createApp } from "vue";
+import App from "../App.vue";
-createApp(App).mount('#app')
+createApp(App).mount("#app");
diff --git a/src/js/overlay.js b/src/js/overlay.js
index 384a098c..f3898560 100644
--- a/src/js/overlay.js
+++ b/src/js/overlay.js
@@ -1,4 +1,4 @@
-import { createApp } from 'vue'
-import AppOverlay from '../AppOverlay.vue'
+import { createApp } from "vue";
+import AppOverlay from "../AppOverlay.vue";
-createApp(App).mount('#overlay')
+createApp(App).mount("#overlay");