From 522e2059a6e64b426a29be4dde6512a68c672250 Mon Sep 17 00:00:00 2001 From: keyan Date: Fri, 29 Oct 2021 11:02:26 -0500 Subject: [PATCH] make OP more prominent --- components/comment.js | 2 +- styles/globals.scss | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/components/comment.js b/components/comment.js index 9285a1b5..ee8e6d8f 100644 --- a/components/comment.js +++ b/components/comment.js @@ -89,7 +89,7 @@ export default function Comment ({ \ - e.stopPropagation()}>@{item.user.name}{op && ' OP'} + e.stopPropagation()}>@{item.user.name}{op && ' OP'} {timeSince(new Date(item.createdAt))} diff --git a/styles/globals.scss b/styles/globals.scss index b1d57e5a..3c565459 100644 --- a/styles/globals.scss +++ b/styles/globals.scss @@ -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; }