Skip to content

Commit

Permalink
fix: improve layout
Browse files Browse the repository at this point in the history
  • Loading branch information
qin-guan committed Sep 23, 2023
1 parent 29e7bb2 commit fd55596
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions components/app/home/page.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script setup lang="ts">
import { f7Link, f7List, f7NavTitle, f7NavTitleLarge, f7Navbar, f7Page, f7Tab, f7Tabs, f7Toolbar } from 'framework7-vue'
import { f7Link, f7List, f7Page, f7Tab, f7Tabs, f7Toolbar } from 'framework7-vue'
import type { Router } from 'framework7/types'
import { useIsCurrentUserLoaded } from 'vuefire'
Expand Down Expand Up @@ -39,7 +39,7 @@ watch([authLoaded, auth], (values) => {
/>
<f7Link
tab-link="#events"
text="events"
text="Events"
icon-md="material:events"
/>
<f7Link
Expand All @@ -51,15 +51,17 @@ watch([authLoaded, auth], (values) => {

<f7Tabs>
<f7Tab id="home" tab-active>
<f7List inset class="space-y-8">
<div>
<AppHomeMembershipCard />
</div>
<f7Page no-navbar>
<f7List inset class="space-y-8">
<div>
<AppHomeMembershipCard />
</div>

<div>
<AppHomeNews />
</div>
</f7List>
<div>
<AppHomeNews />
</div>
</f7List>
</f7Page>
</f7Tab>

<f7Tab id="services">
Expand Down

0 comments on commit fd55596

Please # to comment.