-
+
diff --git a/client/src/pages/world-page.vue b/client/src/pages/world-page.vue
index 667643f..bc8af31 100644
--- a/client/src/pages/world-page.vue
+++ b/client/src/pages/world-page.vue
@@ -1,66 +1,6 @@
@@ -71,4 +11,7 @@ export default {
\ No newline at end of file
+.world-page{
+ position: relative;
+}
+
\ No newline at end of file
diff --git a/client/src/routes.js b/client/src/routes.js
index 72cfdb0..0bb4836 100644
--- a/client/src/routes.js
+++ b/client/src/routes.js
@@ -2,9 +2,9 @@
// Pages
-import index from "./pages/index-page";
-import spells from "./pages/spells-page";
-import world from "./pages/world-page";
+import Index from "./pages/index-page";
+import Spells from "./pages/spells-page";
+import World from "./pages/world-page";
// Routes
const routes = [
@@ -12,13 +12,13 @@ const routes = [
path: "*", redirect: "/",
},
{
- path: '/', component: index,
+ path: '/', component: Index,
},
{
- path: '/spells', component: spells,
+ path: '/spells', component: Spells,
},
{
- path: '/world', component: world,
+ path: '/world', component: World,
}
];