make OP more prominent

This commit is contained in:
keyan 2021-10-29 11:02:26 -05:00
parent 2d320513f0
commit 522e2059a6
2 changed files with 6 additions and 1 deletions

View File

@ -89,7 +89,7 @@ export default function Comment ({
</Link>
<span> \ </span>
<Link href={`/${item.user.name}`} passHref>
<a onClick={e => e.stopPropagation()}>@{item.user.name}<span className='text-muted font-weight-bold'>{op && ' OP'}</span></a>
<a onClick={e => e.stopPropagation()}>@{item.user.name}<span className='text-boost font-weight-bold'>{op && ' OP'}</span></a>
</Link>
<span> </span>
<span>{timeSince(new Date(item.createdAt))}</span>

View File

@ -82,6 +82,11 @@ footer {
text-align: center;
}
.text-boost-glow {
color: #8c25f4;
filter: drop-shadow(0 0 7px #8c25f4);
}
.text-twitter svg {
fill: #1da1f2 !important;
}