From e9b70778f06c9832d5c4d27682aa3a6c610d30c6 Mon Sep 17 00:00:00 2001 From: Titus Kristiansen <titusk@stud.ntnu.no> Date: Thu, 5 May 2022 09:04:51 +0200 Subject: [PATCH] Footer working --- src/components/BaseComponents/FooterBar.vue | 2 +- src/views/CommunityViews/CommunityView.vue | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/BaseComponents/FooterBar.vue b/src/components/BaseComponents/FooterBar.vue index dd098aa..ea4ef46 100644 --- a/src/components/BaseComponents/FooterBar.vue +++ b/src/components/BaseComponents/FooterBar.vue @@ -1,5 +1,5 @@ <template> - <footer class=" bg-white dark:bg-gray-800 sm:flex-row border-1 border-t border-b border-gray-600 h-10 inset-x-0 bottom-0"> + <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 diff --git a/src/views/CommunityViews/CommunityView.vue b/src/views/CommunityViews/CommunityView.vue index e887b49..4d3db38 100644 --- a/src/views/CommunityViews/CommunityView.vue +++ b/src/views/CommunityViews/CommunityView.vue @@ -1,6 +1,6 @@ <template> <!-- My communities, with pagination --> - <div class="h-screen"> + <div class="min-h-screen"> <div v-if="loggedIn"> <div class="flex flex-row p-4 relative"> <div class="text-xl md:text-2xl text-primary-light font-medium w-full"> @@ -65,8 +65,8 @@ class="my-4" /> </div> + </div> <FooterBar></FooterBar> - </div> </template> <script> -- GitLab