From 08ae10699269aab938e3e82f383f3cccd04b9749 Mon Sep 17 00:00:00 2001
From: Dessalines <dessalines@users.noreply.github.com>
Date: Thu, 6 Jan 2022 11:26:06 -0500
Subject: [PATCH] Making the modlog badge stand out more. Fixes #531 (#539)

---
 src/shared/components/community/sidebar.tsx | 2 +-
 src/shared/components/home/home.tsx         | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/shared/components/community/sidebar.tsx b/src/shared/components/community/sidebar.tsx
index 0e7358f..b13cb8e 100644
--- a/src/shared/components/community/sidebar.tsx
+++ b/src/shared/components/community/sidebar.tsx
@@ -226,7 +226,7 @@ export class Sidebar extends Component<SidebarProps, SidebarState> {
         </li>
         <li className="list-inline-item">
           <Link
-            className="badge badge-secondary"
+            className="badge badge-primary"
             to={`/modlog/community/${this.props.community_view.community.id}`}
           >
             {i18n.t("modlog")}
diff --git a/src/shared/components/home/home.tsx b/src/shared/components/home/home.tsx
index d145145..e1c2f74 100644
--- a/src/shared/components/home/home.tsx
+++ b/src/shared/components/home/home.tsx
@@ -588,7 +588,7 @@ export class Home extends Component<any, HomeState> {
           })}
         </li>
         <li className="list-inline-item">
-          <Link className="badge badge-secondary" to="/modlog">
+          <Link className="badge badge-primary" to="/modlog">
             {i18n.t("modlog")}
           </Link>
         </li>
-- 
2.44.1