taevas.xyz/tailwind.config.js

16 lines
229 B
JavaScript
Raw Normal View History

2023-05-10 01:37:37 +02:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,ts,jsx,tsx,mdx}"
],
theme: {
2023-05-14 14:26:27 +02:00
borderWidth: {
"3": "3px"
},
2023-05-10 01:37:37 +02:00
extend: {},
},
plugins: [],
2023-05-10 14:16:31 +02:00
important: true
2023-05-10 01:37:37 +02:00
}