Răsfoiți Sursa

Apply dark mode count badge

satof3 1 an în urmă
părinte
comite
90c0c999d4
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      apps/app/src/client/components/Common/CountBadge.tsx

+ 1 - 1
apps/app/src/client/components/Common/CountBadge.tsx

@@ -11,7 +11,7 @@ const CountBadge: FC<CountProps> = (props:CountProps) => {
 
 
 
 
   return (
   return (
-    <span className="grw-count-badge px-2 badge rounded-pill bg-light text-dark">
+    <span className="grw-count-badge px-2 badge bg-body-tertiary text-body-tertiary rounded-pill">
       { count == null && <span className="text-muted">―</span> }
       { count == null && <span className="text-muted">―</span> }
       { count != null && count + offset }
       { count != null && count + offset }
     </span>
     </span>