Skip to content

Commit cd89453

Browse files
committed
feat: Changed submit text to be green as well
1 parent 1963079 commit cd89453

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/SubmitButton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export const SubmitButton: React.FC<{
2424
</Text>
2525
</Box>
2626
<Box borderStyle={'round'} borderColor={!props.canSubmit ? 'gray' : isFocused ? 'blue' : 'green'} paddingX={2}>
27-
<Text color={!props.canSubmit ? 'gray' : isFocused ? 'blue' : 'white'} bold={true} underline={isFocused}>
27+
<Text color={!props.canSubmit ? 'gray' : isFocused ? 'blue' : 'green'} bold={true} underline={isFocused}>
2828
{props.canSubmit ? 'Submit form' : 'Cannot submit form yet'}
2929
</Text>
3030
</Box>

0 commit comments

Comments
 (0)