- add font awesome

- add custom page styling
This commit is contained in:
Arno Kaimbacher 2021-11-22 15:53:10 +01:00
parent 315f845292
commit a4e8ee6f2e
7 changed files with 844 additions and 613 deletions

View file

@ -1,5 +1,6 @@
import { createApp } from "vue";
import App from "./App.vue";
import "./assets/scss/main-styles.scss";
import FontAwesomeIcon from "@/utilities/fontawesome";
createApp(App).mount("#app");
createApp(App).component("fa", FontAwesomeIcon).mount("#app");