diff options
| author | AAGaming <aa@mail.catvibers.me> | 2022-07-03 19:12:10 -0400 |
|---|---|---|
| committer | AAGaming <aa@mail.catvibers.me> | 2022-07-03 19:12:10 -0400 |
| commit | b8bf150a7497c5f4bdb0be8e3be5510be983bead (patch) | |
| tree | d75c47a8b44f3579833d257ad3d7e058ba918b09 /frontend/src/components/store | |
| parent | add3f77c1a2c1447f71423ff0581950b16fa8771 (diff) | |
| download | decky-loader-b8bf150a7497c5f4bdb0be8e3be5510be983bead.tar.gz decky-loader-b8bf150a7497c5f4bdb0be8e3be5510be983bead.zip | |
fix legacy coloring
Diffstat (limited to 'frontend/src/components/store')
| -rw-r--r-- | frontend/src/components/store/PluginCard.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
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<PluginCardProps> = ({ 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<PluginCardProps> = ({ plugin }) => { padding: '5px', marginRight: '10px', borderRadius: '5px', - background: '#ACB2C947', + background: '#EDE841', }} > legacy |
