Skip to content

Commit db3d320

Browse files
committed
clearer buttons
1 parent 84910b9 commit db3d320

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/components/docFeedback/index.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,17 @@ export function DocFeedback({pathname}: Props) {
1717
<span className="text-sm">Was this helpful?</span>
1818
<button
1919
onClick={() => handleFeedback(true)}
20-
className="w-10 h-10 py-2 px-2 hover:bg-[var(--gray-3)] rounded-full flex items-center justify-center"
20+
className="py-2 px-4 gap-4 hover:bg-[var(--gray-3)] rounded-full flex items-center justify-center"
2121
aria-label="Yes, this was helpful"
2222
>
23-
👍
23+
Yes 👍
2424
</button>
2525
<button
2626
onClick={() => handleFeedback(false)}
27-
className="w-10 h-10 py-2 px-2 hover:bg-[var(--gray-3)] rounded-full flex items-center justify-center"
27+
className="py-2 px-4 gap-4 hover:bg-[var(--gray-3)] rounded-full flex items-center justify-center"
2828
aria-label="No, this wasn't helpful"
2929
>
30-
👎
30+
No 👎
3131
</button>
3232
</div>
3333
);

0 commit comments

Comments
 (0)