This repository has been archived on 2025-06-11. You can view files and clone it, but cannot push or open issues or pull requests.
www_ourparadise/tailwind.config.js
2022-12-07 15:39:38 +03:00

19 lines
541 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./templates/**/*.html', './content/**/*.md'],
safelist: [
{
pattern: /(-|)(ml|mr)-(4|8|12|16|20|24|28)/,
variants: ['sm', 'md', 'lg', 'first', 'first:sm', 'first:md', 'first:lg', 'last', 'last:sm', 'last:md', 'last:lg'],
},
{
pattern: /(pt|pb)-(0)/,
variants: ['!', 'lg', 'first', 'first:sm', 'first:md', 'first:lg', 'last', 'last:sm', 'last:md', 'last:lg'],
}
],
theme: {
extend: {},
},
plugins: [],
}