tailwindcss-custom-animation
v0.0.2
Published
<div align="center"> <h1>TailwindCSS Custom Animations</h1> </div>
Readme
This plugin allows you to create custom animations
Install
Install tailwindcss-grid-template-short using npm package manager:
npm i -D tailwindcss-custom-animationImport and add the plugin in your Tailwind Config:
import type { Config } from "tailwindcss";
import customAnimation from "tailwindcss-custom-animation";
const config: Config = {
plugins: [customAnimation()],
};
export default config;