-
+
diff --git a/web/components/contract/tip-button.tsx b/web/components/contract/tip-button.tsx
index e108b7b6..fd80d97f 100644
--- a/web/components/contract/tip-button.tsx
+++ b/web/components/contract/tip-button.tsx
@@ -13,8 +13,7 @@ export function TipButton(props: {
isCompact?: boolean
disabled?: boolean
}) {
- const { tipAmount, totalTipped, userTipped, isCompact, onClick, disabled } =
- props
+ const { tipAmount, totalTipped, userTipped, onClick, disabled } = props
const tipDisplay = shortFormatNumber(Math.ceil(totalTipped / 10))
@@ -35,6 +34,7 @@ export function TipButton(props: {
onClick={onClick}
disabled={disabled}
className={clsx(
+ 'px-2 py-1 text-xs', //2xs button
'text-greyscale-6 transition-transform hover:text-indigo-600 disabled:cursor-not-allowed',
!disabled ? 'hover:rotate-12' : ''
)}
@@ -43,20 +43,20 @@ export function TipButton(props: {
>
2
- ? 'left-[3px] top-[5px] text-[0.35rem]'
+ ? 'left-[4px] top-[2.5px] text-[0.35rem]'
: ''
)}
>
diff --git a/web/components/feed/feed-comments.tsx b/web/components/feed/feed-comments.tsx
index a2701d71..73d89c67 100644
--- a/web/components/feed/feed-comments.tsx
+++ b/web/components/feed/feed-comments.tsx
@@ -178,14 +178,10 @@ export function CommentActions(props: {
}) {
const { onReplyClick, comment, showTip, myTip, totalTip, contract } = props
return (
-
+
{onReplyClick && (
- onReplyClick(comment)}
- >
-
+ onReplyClick(comment)}>
+
)}
{showTip && (
diff --git a/web/components/follow-market-button.tsx b/web/components/follow-market-button.tsx
index 319d4af6..5185390b 100644
--- a/web/components/follow-market-button.tsx
+++ b/web/components/follow-market-button.tsx
@@ -1,4 +1,4 @@
-import { Button } from 'web/components/button'
+import { IconButton } from 'web/components/button'
import {
Contract,
followContract,
@@ -33,9 +33,8 @@ export const FollowMarketButton = (props: {
noTap
noFade
>
-
+
)
}