Move styling to MkA elements
This commit is contained in:
parent
80cbf00eac
commit
bfd812720e
1 changed files with 8 additions and 8 deletions
|
@ -127,12 +127,12 @@ SPDX-License-Identifier: AGPL-3.0-only
|
||||||
<MkPagination v-slot="{items}" :pagination="followingPagination">
|
<MkPagination v-slot="{items}" :pagination="followingPagination">
|
||||||
<div class="follow-relations-list">
|
<div class="follow-relations-list">
|
||||||
<div v-for="followRelationship in items" :key="followRelationship.id" class="follow-relation">
|
<div v-for="followRelationship in items" :key="followRelationship.id" class="follow-relation">
|
||||||
<MkA v-tooltip.mfm="`Last posted: ${dateString(followRelationship.followee.updatedAt)}`" :to="`/admin/user/${followRelationship.followee.id}`">
|
<MkA v-tooltip.mfm="`Last posted: ${dateString(followRelationship.followee.updatedAt)}`" :to="`/admin/user/${followRelationship.followee.id}`" class="user">
|
||||||
<MkUserCardMini :user="followRelationship.followee" :withChart="false" />
|
<MkUserCardMini :user="followRelationship.followee" :withChart="false"/>
|
||||||
</MkA>
|
</MkA>
|
||||||
<span class="arrow">→</span>
|
<span class="arrow">→</span>
|
||||||
<MkA v-tooltip.mfm="`Last posted: ${dateString(followRelationship.follower.updatedAt)}`" :to="`/admin/user/${followRelationship.follower.id}`">
|
<MkA v-tooltip.mfm="`Last posted: ${dateString(followRelationship.follower.updatedAt)}`" :to="`/admin/user/${followRelationship.follower.id}`" class="user">
|
||||||
<MkUserCardMini :user="followRelationship.follower" :withChart="false" />
|
<MkUserCardMini :user="followRelationship.follower" :withChart="false"/>
|
||||||
</MkA>
|
</MkA>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -142,12 +142,12 @@ SPDX-License-Identifier: AGPL-3.0-only
|
||||||
<MkPagination v-slot="{items}" :pagination="followersPagination">
|
<MkPagination v-slot="{items}" :pagination="followersPagination">
|
||||||
<div class="follow-relations-list">
|
<div class="follow-relations-list">
|
||||||
<div v-for="followRelationship in items" :key="followRelationship.id" class="follow-relation">
|
<div v-for="followRelationship in items" :key="followRelationship.id" class="follow-relation">
|
||||||
<MkA v-tooltip.mfm="`Last posted: ${dateString(followRelationship.followee.updatedAt)}`" :to="`/admin/user/${followRelationship.followee.id}`">
|
<MkA v-tooltip.mfm="`Last posted: ${dateString(followRelationship.followee.updatedAt)}`" :to="`/admin/user/${followRelationship.followee.id}`" class="user">
|
||||||
<MkUserCardMini :user="followRelationship.followee" :withChart="false" />
|
<MkUserCardMini :user="followRelationship.followee" :withChart="false"/>
|
||||||
</MkA>
|
</MkA>
|
||||||
<span class="arrow">←</span>
|
<span class="arrow">←</span>
|
||||||
<MkA v-tooltip.mfm="`Last posted: ${dateString(followRelationship.follower.updatedAt)}`" :to="`/admin/user/${followRelationship.follower.id}`">
|
<MkA v-tooltip.mfm="`Last posted: ${dateString(followRelationship.follower.updatedAt)}`" :to="`/admin/user/${followRelationship.follower.id}`" class="user">
|
||||||
<MkUserCardMini :user="followRelationship.follower" :withChart="false" />
|
<MkUserCardMini :user="followRelationship.follower" :withChart="false"/>
|
||||||
</MkA>
|
</MkA>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue