tailwind.config.ts 504 B

1234567891011121314151617181920
  1. import baseConfig from '@extension/tailwindcss-config';
  2. import type { Config } from 'tailwindcss/types/config';
  3. export default {
  4. ...baseConfig,
  5. content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
  6. theme: {
  7. extend: {
  8. keyframes: {
  9. progress: {
  10. '0%': { transform: 'translateX(-100%)' },
  11. '100%': { transform: 'translateX(100%)' },
  12. },
  13. },
  14. animation: {
  15. progress: 'progress 1.5s infinite ease-in-out',
  16. },
  17. },
  18. },
  19. } as Config;