]> Untitled Git - lemmy-ui.git/blobdiff - src/shared/components/post/post-listing.tsx
remove badge-muted
[lemmy-ui.git] / src / shared / components / post / post-listing.tsx
index 137ded9e80626b20ab5b81d264301ec1161df1af..4d8e1094a420bb24e1fca0b00d5808e9d6863f9e 100644 (file)
@@ -327,13 +327,13 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
           <PersonListing person={post_view.creator} />
 
           {this.creatorIsMod_ && (
-            <span className="mx-1 badge badge-muted">{i18n.t("mod")}</span>
+            <span className="mx-1 badge">{i18n.t("mod")}</span>
           )}
           {this.creatorIsAdmin_ && (
-            <span className="mx-1 badge badge-muted">{i18n.t("admin")}</span>
+            <span className="mx-1 badge">{i18n.t("admin")}</span>
           )}
           {post_view.creator.bot_account && (
-            <span className="mx-1 badge badge-muted">
+            <span className="mx-1 badge">
               {i18n.t("bot_account").toLowerCase()}
             </span>
           )}
@@ -345,7 +345,7 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
           )}
         </li>
         {post_view.post.language_id !== 0 && (
-          <span className="mx-1 badge badge-muted">
+          <span className="mx-1 badge">
             {
               this.props.allLanguages.find(
                 lang => lang.id === post_view.post.language_id