diff --git a/PR_DESCRIPTION.md b/PR_DESCRIPTION.md new file mode 100644 index 00000000..93d40939 --- /dev/null +++ b/PR_DESCRIPTION.md @@ -0,0 +1,20 @@ +# Fix text clipping in gradient headings + +## Issue +Fixed text clipping issue where descenders (letters like "g" and "y") were being cut off in gradient text headings using `bg-clip-text`. + +## Changes +- Added `overflow-visible` to parent containers +- Set `lineHeight: '1.3'` and `paddingBottom: '0.25rem'` to headings with gradient text +- Fixed clipping in: + - "My CATs" heading (y was clipped) + - "Loading Your CATs" title (g was clipped) + - "Token Management" heading (g was clipped) + +## Files Modified +- `web/src/app/my-cats/page.tsx` +- `web/src/components/ui/loading-state.tsx` +- `web/src/app/[cat]/InteractionClient.tsx` + +Fixes #95 + diff --git a/web/src/app/[cat]/InteractionClient.tsx b/web/src/app/[cat]/InteractionClient.tsx index d9935d68..bb08a4d1 100644 --- a/web/src/app/[cat]/InteractionClient.tsx +++ b/web/src/app/[cat]/InteractionClient.tsx @@ -1029,9 +1029,10 @@ export default function InteractionClient() {
{/* Header Section */} -
+
-
+
-
+