This commit is contained in:
2023-08-17 16:32:27 +03:00
parent 643afff8f5
commit c481652e14
69 changed files with 737 additions and 1445 deletions

View File

@@ -1,6 +1,16 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./templates/**/*.html'],
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: {},
},