i can't change Input component border-radius, pls tell me resolve methods #854
Answered
by
tianenpang
g17628381307
asked this question in
Help
-
<Input
css={{ marginTop: 60 }}
width="508px"
clearable
color="primary"
contentRightStyling={false}
bordered
labelPlaceholder="What's your phone number?"
contentRight={
<Button auto css={{ borderRadius: '0 8px 8px 0', width: 150 }}>
APPLY
</Button>
}
/> this my code, i need a change borderRadius methods, |
Beta Was this translation helpful? Give feedback.
Answered by
tianenpang
Nov 4, 2022
Replies: 1 comment
-
Hi @g17628381307 you can override it at the component-level by using Here's an example: codesandbox.io/s/nextui-discussion-854-l64i83 |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
jrgarciadev
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @g17628381307 you can override it at the component-level by using
css
or globally withcreateTheme
.Here's an example: codesandbox.io/s/nextui-discussion-854-l64i83