diff --git a/src/components/BaseComponents/FooterBar.vue b/src/components/BaseComponents/FooterBar.vue index ea4ef46c258c22a4687ec0749a8ed9c837d0bf6d..7e9d7af939ff0f2b03d7f961ea7f49d5b40d1cb5 100644 --- a/src/components/BaseComponents/FooterBar.vue +++ b/src/components/BaseComponents/FooterBar.vue @@ -1,22 +1,25 @@ <template> - <footer class="w-full bg-white dark:bg-gray-800 sm:flex-row border-1 border-t border-b border-gray-600 h-10"> - - <p class="float-left text-xs my-3 ml-4">© BoCo 2022 - All rights reserved</p> + <footer + class="w-full bg-white dark:bg-gray-800 sm:flex-row border-1 border-t border-b border-gray-600 h-10" + > + <p class="float-left text-xs my-3 ml-4"> + © BoCo 2022 - All rights reserved + </p> <QuestionMarkCircleIcon - class="md:mt-0 mt-1 mr-4 float-right cursor-pointer h-8 md:h-10 text-primary-medium" - alt="Hjelp" - @click="$router.push('/help')" + class="md:mt-0 mt-1 mr-4 float-right cursor-pointer h-8 md:h-10 text-primary-medium" + alt="Hjelp" + @click="$router.push('/help')" /> </footer> </template> <script> -import { QuestionMarkCircleIcon } from "@heroicons/vue/outline" +import { QuestionMarkCircleIcon } from "@heroicons/vue/outline"; export default { name: "FooterBar", - components:{ + components: { QuestionMarkCircleIcon, }, -} -</script> \ No newline at end of file +}; +</script>