From 9264aa79994a3812e714e987a95a79302c370a14 Mon Sep 17 00:00:00 2001 From: William Grant Date: Fri, 28 Jun 2024 15:50:43 +1000 Subject: [PATCH] fix: correct admin crown color --- ts/components/avatar/Avatar.tsx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/ts/components/avatar/Avatar.tsx b/ts/components/avatar/Avatar.tsx index 3597254c2..9a3872493 100644 --- a/ts/components/avatar/Avatar.tsx +++ b/ts/components/avatar/Avatar.tsx @@ -53,7 +53,6 @@ const CrownWrapper = styled.div` height: 18px; width: 18px; transform: translate(20%, 20%); // getting over 23% creates a glitch - color: #f7c347; background: var(--background-primary-color); border-radius: 50%; `; @@ -61,7 +60,12 @@ const CrownWrapper = styled.div` export const CrownIcon = () => { return ( - + ); };