Spaces:
Runtime error
Runtime error
File size: 290 Bytes
0e2b5bb 836ca1d 0e2b5bb |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {
animation: {
ping: 'ping 0.5s cubic-bezier(0, 0, 0.2, 1)'
}
}
},
plugins: [require('@tailwindcss/forms'), require('@tailwindcss/line-clamp')]
};
|