diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2023-01-05 21:04:56 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2023-01-05 21:04:56 +0900 |
| commit | 047262ab20c83232c01b102961dfdc299073ea1a (patch) | |
| tree | df65326afd1c3b794dbe124a55b33f4380406733 /packages/frontend/src/pages/channels.vue | |
| parent | :art: (diff) | |
| download | misskey-047262ab20c83232c01b102961dfdc299073ea1a.tar.gz misskey-047262ab20c83232c01b102961dfdc299073ea1a.tar.bz2 misskey-047262ab20c83232c01b102961dfdc299073ea1a.zip | |
refactor
Diffstat (limited to 'packages/frontend/src/pages/channels.vue')
| -rw-r--r-- | packages/frontend/src/pages/channels.vue | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/frontend/src/pages/channels.vue b/packages/frontend/src/pages/channels.vue index 34e9dac196..cc8375f636 100644 --- a/packages/frontend/src/pages/channels.vue +++ b/packages/frontend/src/pages/channels.vue @@ -4,18 +4,18 @@ <MkSpacer :content-max="700"> <div v-if="tab === 'featured'" class="_content grwlizim featured"> <MkPagination v-slot="{items}" :pagination="featuredPagination"> - <MkChannelPreview v-for="channel in items" :key="channel.id" class="_gap" :channel="channel"/> + <MkChannelPreview v-for="channel in items" :key="channel.id" class="_margin" :channel="channel"/> </MkPagination> </div> <div v-else-if="tab === 'following'" class="_content grwlizim following"> <MkPagination v-slot="{items}" :pagination="followingPagination"> - <MkChannelPreview v-for="channel in items" :key="channel.id" class="_gap" :channel="channel"/> + <MkChannelPreview v-for="channel in items" :key="channel.id" class="_margin" :channel="channel"/> </MkPagination> </div> <div v-else-if="tab === 'owned'" class="_content grwlizim owned"> <MkButton class="new" @click="create()"><i class="ti ti-plus"></i></MkButton> <MkPagination v-slot="{items}" :pagination="ownedPagination"> - <MkChannelPreview v-for="channel in items" :key="channel.id" class="_gap" :channel="channel"/> + <MkChannelPreview v-for="channel in items" :key="channel.id" class="_margin" :channel="channel"/> </MkPagination> </div> </MkSpacer> |