Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions components/Form.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,14 @@ const Form = ({ type, post, setPost, submitting, handleSubmit }) => {
</label>

<div className='flex-end mx-3 mb-5 gap-4'>
<Link href='/' className='text-gray-500 text-sm'>
<Link href='/' className='text-gray-500 text-sm font-medium hover:text-gray-700 transition-all duration-200'>
Cancel
</Link>

<button
type='submit'
disabled={submitting}
className='px-5 py-1.5 text-sm bg-primary-orange rounded-full text-white'
className='px-5 py-1.5 text-sm bg-primary-orange rounded-full text-white shadow-md transition-all duration-200 hover:shadow-lg active:outline-none active:ring-2 active:ring-primary-orange active:ring-opacity-50'
>
{submitting ? `${type}ing...` : type}
</button>
Expand Down