Skip to content

Commit

Permalink
fix: remove animation (keephq#3433)
Browse files Browse the repository at this point in the history
  • Loading branch information
talboren authored Feb 13, 2025
1 parent a160a62 commit 59747bf
Showing 1 changed file with 0 additions and 23 deletions.
23 changes: 0 additions & 23 deletions tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,23 +0,0 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/**/*.{js,ts,jsx,tsx,mdx}",
"./node_modules/@tremor/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
keyframes: {
"slide-left": {
"0%": { transform: "translateX(10px)", opacity: "0" },
"100%": { transform: "translateX(0)", opacity: "1" },
},
},
animation: {
"slide-left": "slide-left 0.2s ease-out forwards",
},
},
},
};

0 comments on commit 59747bf

Please sign in to comment.