Skip to content

Commit f6af839

Browse files
koki-developclaude
andcommitted
feat: Add border styling to input field
- Add single-line gray border around input field - Apply horizontal padding only for compact appearance - Improve visual separation of input area 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 66be4b1 commit f6af839

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/InputField.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export const InputField: React.FC<InputFieldProps> = ({
1616
showCursor,
1717
}) => {
1818
return (
19-
<Box>
19+
<Box borderStyle="single" borderColor="gray" paddingX={1}>
2020
<Text color="yellow">&gt; </Text>
2121
<TextInput
2222
value={value}

0 commit comments

Comments
 (0)