diff --git a/client/public/index.html b/client/public/index.html
index 30799f8..1ef8b64 100644
--- a/client/public/index.html
+++ b/client/public/index.html
@@ -145,8 +145,8 @@
// Initialize library
aa('init', {
- appId: <%= VUE_APP_ALGOLIA_APP_ID %>,
- apiKey: <%= VUE_APP_ALGOLIA_API_KEY %>
+ appId: "<%= VUE_APP_ALGOLIA_APP_ID %>",
+ apiKey: "<%= VUE_APP_ALGOLIA_API_KEY %>"
});
diff --git a/client/src/App.vue b/client/src/App.vue
index cffcd2e..c202544 100644
--- a/client/src/App.vue
+++ b/client/src/App.vue
@@ -18,6 +18,13 @@
About
+
+ XS
+ SM
+ MD
+ LG
+ XL
+
@@ -102,7 +109,6 @@ body {
import algoliasearch from "algoliasearch/lite";
import SeasonList from "./components/SeasonList.vue";
import "instantsearch.css/themes/algolia-min.css";
-import './scss/main.scss';
export default {
name: "App",
diff --git a/client/src/main.js b/client/src/main.js
index d2ca680..82e819f 100644
--- a/client/src/main.js
+++ b/client/src/main.js
@@ -1,4 +1,5 @@
import "bootstrap/dist/css/bootstrap.css";
+import '@/scss/main.scss';
import Vue from "vue";
import {BootstrapVue, BootstrapVueIcons} from "bootstrap-vue";
import InstantSearch from "vue-instantsearch";