Files
juls07.dev/tailwind.config.js

31 lines
599 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./components/**/*.{js,vue,ts}",
"./layouts/**/*.vue",
"./pages/**/*.vue",
"./content/**/*.mdc",
"./plugins/**/*.{js,ts}",
"./nuxt.config.{js,ts}",
"./app.vue",
],
theme: {
extend: {
screens: {
'xs': '512px',
'3xl': '1792px'
},
keyframes: {
blink: {
'from, to': { opacity: '0' },
'50%': { opacity: '1' },
}
},
animation: {
blink: 'blink 1s step-end infinite',
}
},
},
plugins: [],
}