]> Untitled Git - lemmy-ui.git/commitdiff
fix: Remove some extra classes on flag/report buttons
authorJay Sitter <jay@jaysitter.com>
Sun, 18 Jun 2023 01:04:40 +0000 (21:04 -0400)
committerJay Sitter <jay@jaysitter.com>
Sun, 18 Jun 2023 01:04:40 +0000 (21:04 -0400)
src/shared/components/post/post-listing.tsx

index 6e29f7f7e1f5eb9c1ddd4c35f823ec434ef3eeb9..f0b34d0c49e68cdd1e40ec2170cebf3831c16653 100644 (file)
@@ -873,7 +873,7 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
   get reportButton() {
     return (
       <button
-        className="btn btn-link btn-animate d-flex align-items-center rounded-0 py-0 dropdown-item"
+        className="btn btn-link d-flex align-items-center rounded-0 dropdown-item"
         onClick={linkEvent(this, this.handleShowReportDialog)}
         data-tippy-content={i18n.t("show_report_dialog")}
         aria-label={i18n.t("show_report_dialog")}
@@ -886,7 +886,7 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
   get blockButton() {
     return (
       <button
-        className="btn btn-link btn-animate d-flex align-items-center rounded-0 py-0 dropdown-item"
+        className="btn btn-link d-flex align-items-center rounded-0 dropdown-item"
         onClick={linkEvent(this, this.handleBlockPersonClick)}
         data-tippy-content={i18n.t("block_user")}
         aria-label={i18n.t("block_user")}