Skip to content

Commit

Permalink
Update SupportServer component transition delays
Browse files Browse the repository at this point in the history
  • Loading branch information
chimpdev committed May 6, 2024
1 parent 59f2815 commit 50d820a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default function SupportServer({ bot }) {
className='mt-4 text-xl font-semibold'
initial={{ opacity: 0, y: -10 }}
animate={{ opacity: 1, y: 0 }}
transition={{ duration: 0.3, type: 'spring', stiffness: 100, damping: 10, delay: .5 }}
transition={{ duration: 0.3, type: 'spring', stiffness: 100, damping: 10, delay: .7 }}
>
Support Server
</motion.h2>
Expand All @@ -19,7 +19,7 @@ export default function SupportServer({ bot }) {
className='flex w-full p-2 mt-4 rounded-lg hover:bg-tertiary bg-secondary gap-x-3'
initial={{ opacity: 0 }}
animate={{ opacity: 1 }}
transition={{ duration: 0.3, type: 'spring', stiffness: 100, damping: 10, delay: .7 }}
transition={{ duration: 0.3, type: 'spring', stiffness: 100, damping: 10, delay: .9 }}
href={`/servers/${bot.support_server.id}`}
>
<ServerIcon
Expand Down

0 comments on commit 50d820a

Please sign in to comment.