style(nextjs): make navbar backbtn look better
This commit is contained in:
parent
7373b2ccee
commit
9f09aaed13
1 changed files with 1 additions and 1 deletions
|
|
@ -6,7 +6,7 @@ import { useRouter } from 'next/navigation';
|
|||
const BackBtn = () => {
|
||||
const router = useRouter();
|
||||
return (
|
||||
<button onClick={() => router.back()} className='bg-blue-900 rounded-full p-2'>
|
||||
<button onClick={() => router.back()} className='bg-white-900 border border-white/20 hover:border-white/60 transition-all duration-200 rounded-full p-2'>
|
||||
<ArrowLeftIcon className="w-5 h-5 text-white" />
|
||||
</button>
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue