Skip to content

Commit

Permalink
Merge pull request #323 from icflorescu/next
Browse files Browse the repository at this point in the history
Improve docs website sponsor button
  • Loading branch information
icflorescu authored Jun 8, 2023
2 parents 9946b05 + f64cf27 commit 5830322
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/components/AppHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ const REPO_LINK_ARIA_LABEL = 'View Mantine DataTable source code on GitHub';
const SPONSORS_LINK_ARIA_LABEL = 'Sponsor Mantine DataTable project on GitHub Sponsors';

const BEAT_ANIMATION = keyframes({
'0%': { transform: 'scale(1)' },
'7%': { transform: 'scale(1.1)' },
'14%': { transform: 'scale(1)' },
'21%': { transform: 'scale(1.1)' },
'30%': { transform: 'scale(1)' },
'0%': { transform: 'scale(1)', opacity: 1 },
'7%': { transform: 'scale(1.1)', opacity: 0.5 },
'14%': { transform: 'scale(1)', opacity: 1 },
'21%': { transform: 'scale(1.1)', opacity: 0.5 },
'30%': { transform: 'scale(1)', opacity: 1 },
});

const useStyles = createStyles((theme) => {
Expand Down

0 comments on commit 5830322

Please sign in to comment.