Skip to content

Commit

Permalink
improve button and text input design
Browse files Browse the repository at this point in the history
  • Loading branch information
visrut-at-incubyte committed Sep 4, 2023
1 parent 08abe3b commit e47f98b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/create-survey/components/NumberInput/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const NumberInput = ({ setAnswer }: QuestionUiProps) => {
e.preventDefault()
setAnswer && setAnswer(selectedNumber)
}}
className='btn-primary'
className='btn-primary self-end my-5 mx-10'
style={{ width: '70px' }}
>
Next
Expand Down
2 changes: 1 addition & 1 deletion app/create-survey/components/TextInput/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const TextInput = ({ setAnswer }: QuestionUiProps) => {
e.preventDefault()
setAnswer && setAnswer(text)
}}
className='btn-primary'
className='btn-primary self-end my-5 mx-10'
style={{ width: '70px' }}
>
Next
Expand Down

0 comments on commit e47f98b

Please sign in to comment.