]> 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 14:18:17 +0000 (10:18 -0400)
src/shared/components/post/post-listing.tsx

index 319c8b50702813736457cf8d67c7e82abd8da461..8671cf4a741aa3227c2e31e021fd202d01bdeb93 100644 (file)
@@ -875,7 +875,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")}
@@ -888,7 +888,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")}