- added Footer (mobile version)

- fix menu and qselect
This commit is contained in:
paoloar77
2022-02-10 01:04:17 +01:00
parent b4ad353aef
commit e2875e2400
24 changed files with 144 additions and 52 deletions

View File

@@ -0,0 +1,36 @@
<template>
<q-footer
class="bg-white small-screen-only"
bordered
>
<q-tabs
class="text-grey-10 text-h6"
active-color="primary"
indicator-color="transparent"
>
<q-route-tab
to="/"
icon="fas fa-home"
/>
<q-route-tab
to="/groups"
icon="fas fa-users"
/>
<q-route-tab
to="/friends"
icon="fas fa-user-friends"
/>
<q-route-tab
:to="`/my/`+getMyUsername()"
icon="person"
/>
</q-tabs>
</q-footer>
</template>
<script lang="ts" src="./MyFooter.ts">
</script>
<style lang="scss" scoped>
@import './MyFooter.scss';
</style>