tailwind.config.js 470 B

12345678910111213141516171819202122
  1. /** @type {import('tailwindcss').Config} */
  2. module.exports = {
  3. darkMode: 'class',
  4. content: [
  5. './index.html',
  6. './src/**/*.{vue,js,ts,jsx,tsx}',
  7. ],
  8. theme: {
  9. extend: {
  10. animation: {
  11. blink: 'blink 1.2s infinite steps(1, start)',
  12. },
  13. keyframes: {
  14. blink: {
  15. '0%, 100%': { 'background-color': 'currentColor' },
  16. '50%': { 'background-color': 'transparent' },
  17. },
  18. },
  19. },
  20. },
  21. plugins: [],
  22. }