Skip to content

Commit

Permalink
fix(docs): defineKeyframes usage (#2029)
Browse files Browse the repository at this point in the history
  • Loading branch information
astahmer authored Jan 18, 2024
1 parent 9fbf53e commit c0af6db
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions website/pages/docs/customization/config-functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,9 +169,11 @@ Function for [keyframes](/docs/customization/theme#keyframes) definitions.
```ts
import { defineKeyframes } from '@pandacss/dev'

export const fadein = defineKeyframes({
'0%': { opacity: '0' },
'100%': { opacity: '1' }
export const keyframes = defineKeyframes({
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' }
}
})
```

Expand Down

3 comments on commit c0af6db

@vercel
Copy link

@vercel vercel bot commented on c0af6db Jan 18, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on c0af6db Jan 18, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

panda-studio – ./

panda-studio-git-main-chakra-ui.vercel.app
panda-app.vercel.app
panda-studio-chakra-ui.vercel.app

@vercel
Copy link

@vercel vercel bot commented on c0af6db Jan 18, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

panda-docs – ./website

panda-docs-git-main-chakra-ui.vercel.app
panda-docs.vercel.app
panda-docs-chakra-ui.vercel.app
panda-css.com

Please sign in to comment.