From b8bf150a7497c5f4bdb0be8e3be5510be983bead Mon Sep 17 00:00:00 2001 From: AAGaming Date: Sun, 3 Jul 2022 19:12:10 -0400 Subject: fix legacy coloring --- frontend/src/components/store/PluginCard.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'frontend/src/components/store/PluginCard.tsx') diff --git a/frontend/src/components/store/PluginCard.tsx b/frontend/src/components/store/PluginCard.tsx index a21c199b..c4d2c938 100644 --- a/frontend/src/components/store/PluginCard.tsx +++ b/frontend/src/components/store/PluginCard.tsx @@ -125,7 +125,7 @@ const PluginCard: FC = ({ plugin }) => { padding: '5px', marginRight: '10px', borderRadius: '5px', - background: tag == 'root' ? '#842029' : tag == 'legacy' ? '#EDE841' : '#ACB2C947', + background: tag == 'root' ? '#842029' : '#ACB2C947', }} > {tag == 'root' ? 'Requires root' : tag} @@ -137,7 +137,7 @@ const PluginCard: FC = ({ plugin }) => { padding: '5px', marginRight: '10px', borderRadius: '5px', - background: '#ACB2C947', + background: '#EDE841', }} > legacy -- cgit v1.2.3