diff --git a/frontend/react-app/src/components/CreateTaskForm.jsx b/frontend/react-app/src/components/CreateTaskForm.jsx index 7d852ee..1d82721 100644 --- a/frontend/react-app/src/components/CreateTaskForm.jsx +++ b/frontend/react-app/src/components/CreateTaskForm.jsx @@ -20,17 +20,15 @@ function CreateTaskForm({userId}){ const customStyles = { control: (provided) => ({ ...provided, - width: '100%', - minWidth: '100px', - maxWidth: '100%', - minHeight: '30px', - maxHeight: '100%', - border: '2px solid grey', - borderRadius: '10px', - paddingLeft: '8px', - backgroundColor: '#BFCDE0', - margin: '10px 0px', - cursor: 'pointer' + marginLeft: '25%', + width: '50%', + padding: '16px 20px', + border: 'none', + borderRadius: '4px', + backgroundColor: 'white', + cursor: 'pointer', + border: '1.5px solid #3B3355', + borderRadius: '10px' }), option: (provided, state) =>({ ...provided, @@ -101,14 +99,14 @@ function CreateTaskForm({userId}){