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