mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-03-14 04:08:32 +03:00
Handle memorial accounts
This commit is contained in:
parent
062f42a05d
commit
1257ce8636
2 changed files with 11 additions and 13 deletions
|
@ -340,7 +340,7 @@
|
|||
}
|
||||
.timeline-start .account-container header .account-block {
|
||||
font-size: 175%;
|
||||
margin-bottom: -8px;
|
||||
/* margin-bottom: -8px; */
|
||||
line-height: 1.1;
|
||||
letter-spacing: -0.5px;
|
||||
mix-blend-mode: multiply;
|
||||
|
|
|
@ -98,6 +98,7 @@ function AccountInfo({
|
|||
statusesCount,
|
||||
url,
|
||||
username,
|
||||
memorial,
|
||||
} = info || {};
|
||||
let headerIsAvatar = false;
|
||||
let { header, headerStatic } = info || {};
|
||||
|
@ -266,19 +267,16 @@ function AccountInfo({
|
|||
/>
|
||||
</header>
|
||||
<main tabIndex="-1">
|
||||
{bot && (
|
||||
<>
|
||||
<span class="tag">
|
||||
<Icon icon="bot" /> Automated
|
||||
</span>
|
||||
</>
|
||||
{!!memorial && <span class="tag">In Memoriam</span>}
|
||||
{!!bot && (
|
||||
<span class="tag">
|
||||
<Icon icon="bot" /> Automated
|
||||
</span>
|
||||
)}
|
||||
{group && (
|
||||
<>
|
||||
<span class="tag">
|
||||
<Icon icon="group" /> Group
|
||||
</span>
|
||||
</>
|
||||
{!!group && (
|
||||
<span class="tag">
|
||||
<Icon icon="group" /> Group
|
||||
</span>
|
||||
)}
|
||||
<div
|
||||
class="note"
|
||||
|
|
Loading…
Add table
Reference in a new issue