1
0
mirror of https://github.com/typemill/typemill.git synced 2025-07-25 16:21:54 +02:00
Files
php-typemill/tailwind.config.js
2023-05-11 14:28:19 +02:00

17 lines
329 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./system/typemill/author/**/*.{html,js,twig}"],
theme: {
extend: {
width: {
'half': '48%',
'54rem': '54rem',
},
opacity: {
'0': '0',
},
visibility: ["group-hover"],
},
},
plugins: [],
}