Jelajahi Sumber

Merge pull request #9036 from weseek/support/152601-apply-darkmode-countbadge

support: Dark mode support for CountBadge
Yuki Takei 1 tahun lalu
induk
melakukan
197a4a422a
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  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 (
-    <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">
       { count == null && <span className="text-muted">―</span> }
       { count != null && count + offset }
     </span>