Adjust cursor vertical alignment in empty state

- Changed cursor top position from 0px to 0.125em
- Aligns cursor with text baseline instead of sitting below it
- Improves visual consistency with placeholder text
This commit is contained in:
spencrmartin
2025-09-25 13:39:38 -04:00
parent 0f303b8625
commit 663c921b47
+1 -1
View File
@@ -388,7 +388,7 @@ export const RichChatInput = forwardRef<RichChatInputRef, RichChatInputProps>(({
height: "1em",
width: "1px",
left: "0px",
top: "0px",
top: "0.125em", // Align with text baseline
verticalAlign: "baseline"
}}
/>