mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-05 11:23:08 +02:00
🎨
This commit is contained in:
parent
7a3ddc869e
commit
72075314a8
1 changed files with 5 additions and 3 deletions
|
@ -145,9 +145,11 @@ SPDX-License-Identifier: AGPL-3.0-only
|
||||||
<div v-else-if="tab === 'renotes'" :class="$style.tab_renotes">
|
<div v-else-if="tab === 'renotes'" :class="$style.tab_renotes">
|
||||||
<MkPagination :pagination="renotesPagination" :disableAutoLoad="true">
|
<MkPagination :pagination="renotesPagination" :disableAutoLoad="true">
|
||||||
<template #default="{ items }">
|
<template #default="{ items }">
|
||||||
<MkA v-for="item in items" :key="item.id" :to="userPage(item.user)">
|
<div style="display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); grid-gap: 12px;">
|
||||||
<MkUserCardMini :user="item.user" :withChart="false"/>
|
<MkA v-for="item in items" :key="item.id" :to="userPage(item.user)">
|
||||||
</MkA>
|
<MkUserCardMini :user="item.user" :withChart="false"/>
|
||||||
|
</MkA>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</MkPagination>
|
</MkPagination>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue