remove hard-coded text foreground color classes (#1658)

Signed-off-by: Alec Armbruster <35377827+alectrocute@users.noreply.github.com>
This commit is contained in:
Alec Armbruster 2023-06-27 19:08:01 -04:00 committed by GitHub
parent 1c759cc83b
commit 874ae62fba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 7 deletions

View file

@ -412,13 +412,13 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
getRoleLabelPill({
label: I18NextService.i18n.t("mod"),
tooltip: I18NextService.i18n.t("mod"),
classes: "text-bg-primary text-black",
classes: "text-bg-primary",
})}
{this.creatorIsAdmin_ &&
getRoleLabelPill({
label: I18NextService.i18n.t("admin"),
tooltip: I18NextService.i18n.t("admin"),
classes: "text-bg-danger text-white",
classes: "text-bg-danger",
})}
{post_view.creator.bot_account &&
getRoleLabelPill({