SkillAegis/tailwind.config.js

29 lines
484 B
JavaScript
Raw Normal View History

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
safelist: [
{
pattern: /bg-blue+/, // Includes bg of all colors and shades
},
],
theme: {
extend: {
transitionProperty: {
'width': 'width'
},
2024-07-04 08:10:38 +00:00
screens: {
'3xl': '1800px',
},
fontSize: {
'xxs': '0.6rem',
},
},
},
plugins: [
],
darkMode: ['selector'],
}