forked from AkkomaGang/akkoma-fe
Redo about page and staff panel
This commit is contained in:
parent
488cd43080
commit
b93a3c8ab0
2 changed files with 14 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
|||
<template>
|
||||
<div class="column-inner">
|
||||
<instance-specific-panel v-if="showInstanceSpecificPanel" />
|
||||
<!--<instance-specific-panel v-if="showInstanceSpecificPanel" />-->
|
||||
<staff-panel />
|
||||
<terms-of-service-panel />
|
||||
<MRFTransparencyPanel />
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
:key="group.role"
|
||||
class="staff-group"
|
||||
>
|
||||
<h4>{{ $t('general.role.' + group.role) }}</h4>
|
||||
<h4>The Admin Team</h4>
|
||||
<basic-user-card
|
||||
v-for="user in group.users"
|
||||
:key="user.screen_name"
|
||||
|
@ -30,10 +30,21 @@
|
|||
|
||||
.staff-group {
|
||||
padding-left: 1em;
|
||||
padding-top: 1em;
|
||||
padding-top: 0.2em;
|
||||
padding-bottom: 2px;
|
||||
|
||||
.basic-user-card {
|
||||
padding: 0.6em 0.4em;
|
||||
padding-left: 0;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.basic-user-card-collapsed-content {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.still-image {
|
||||
border-radius: 15px;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue