🎨
This commit is contained in:
parent
6083356a3e
commit
0ed42e0ea9
1 changed files with 3 additions and 2 deletions
|
@ -1,8 +1,8 @@
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<MkLoading v-if="fetching"/>
|
<MkLoading v-if="fetching"/>
|
||||||
<div v-else :class="$style.root">
|
<div v-else :class="$style.root" class="_panel">
|
||||||
<MkA v-for="user in moderators" :key="user.id" v-user-preview="user.id" class="user" :to="`/user-info/${user.id}`">
|
<MkA v-for="user in moderators" :key="user.id" class="user" :to="`/user-info/${user.id}`">
|
||||||
<MkAvatar :user="user" class="avatar" :show-indicator="true" :disable-link="true"/>
|
<MkAvatar :user="user" class="avatar" :show-indicator="true" :disable-link="true"/>
|
||||||
</MkA>
|
</MkA>
|
||||||
</div>
|
</div>
|
||||||
|
@ -35,6 +35,7 @@ onMounted(async () => {
|
||||||
grid-template-columns: repeat(auto-fill, minmax(30px, 40px));
|
grid-template-columns: repeat(auto-fill, minmax(30px, 40px));
|
||||||
grid-gap: 12px;
|
grid-gap: 12px;
|
||||||
place-content: center;
|
place-content: center;
|
||||||
|
padding: 12px;
|
||||||
|
|
||||||
&:global {
|
&:global {
|
||||||
> .user {
|
> .user {
|
||||||
|
|
Loading…
Reference in a new issue