diff --git a/app/components/content/CatchPhrase.vue b/app/components/content/CatchPhrase.vue index 49fbfac..0b7b58b 100644 --- a/app/components/content/CatchPhrase.vue +++ b/app/components/content/CatchPhrase.vue @@ -2,10 +2,10 @@

Hover some of the bold text to find out more about me.

diff --git a/tailwind.config.ts b/tailwind.config.ts index 2ba106e..c84ae5c 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -16,5 +16,22 @@ export default >{ './app.config.{js,ts}', 'content/**/*.md' ], + theme: { + extend: { + animation: { + wave: 'wave 3s infinite' + }, + keyframes: { + wave: { + '0%, 50%, 100%': { + transform: 'rotate(-12deg)' + }, + '25%, 75%': { + transform: 'rotate(12deg) scale(1.5)' + } + } + } + } + }, plugins: [typography] }