mirror of
https://github.com/YunoHost/yunohost-portal.git
synced 2024-09-03 20:06:23 +02:00
layout: hide footer if not connected
This commit is contained in:
parent
50dccdeae2
commit
8a0f90fdde
1 changed files with 6 additions and 1 deletions
|
@ -87,7 +87,12 @@ async function logout() {
|
|||
<slot />
|
||||
</main>
|
||||
|
||||
<footer id="main-footer" class="mt-auto focus-target" tabindex="-1">
|
||||
<footer
|
||||
v-if="isLoggedIn"
|
||||
id="main-footer"
|
||||
class="mt-auto focus-target"
|
||||
tabindex="-1"
|
||||
>
|
||||
<slot name="footer">
|
||||
<nav
|
||||
class="flex pt-2 flex-col border-t border-gray-500 flex-wrap text-center sm:space-x-5 sm:flex-row sm:inline-flex"
|
||||
|
|
Loading…
Reference in a new issue