Skip to content

Commit

Permalink
feat: add scale effect if active element
Browse files Browse the repository at this point in the history
  • Loading branch information
Nuuriii committed Nov 13, 2023
1 parent 6810ed6 commit 3f676fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/components/header/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export default function Header() {
<button className='h-[3rem] w-[9rem] font-[600] rounded-[2rem] bg-[#F48C06] text-[#FFFFFF] flex justify-center items-center hover:scale-[1.05] duration-[0.3s] active:scale-[0.98]'>
Join for free
</button>
<button className='hover:scale-[1.05] duration-[0.3s]'>
<button className='hover:scale-[1.05] duration-[0.3s] active:scale-[0.98]'>
<Image
className='h-[3.7rem] w-auto mx-[1.5rem]'
src={Play}
Expand Down Expand Up @@ -138,7 +138,7 @@ export default function Header() {
Today at 12.00 PM
</p>
<button
className='h-[2.5rem] w-[8rem] rounded-[2rem] font-[700] flex justify-center items-center bg-[#D8587E] text-[#FFFFFF] hover:scale-[1.05] duration-[0.3s]'
className='h-[2.5rem] w-[8rem] rounded-[2rem] font-[700] flex justify-center items-center bg-[#D8587E] text-[#FFFFFF] hover:scale-[1.05] duration-[0.3s] active:scale-[0.98]'
style={{ fontFamily: 'nunito, sans-serif' }}
>
Join Now
Expand Down

0 comments on commit 3f676fe

Please sign in to comment.