|
|
|
@ -1,5 +1,6 @@ |
|
|
|
import flowbite from "flowbite/plugin"; |
|
|
|
import flowbite from "flowbite/plugin"; |
|
|
|
import plugin from "tailwindcss/plugin"; |
|
|
|
import plugin from "tailwindcss/plugin"; |
|
|
|
|
|
|
|
import typography from "@tailwindcss/typography"; |
|
|
|
|
|
|
|
|
|
|
|
/** @type {import('tailwindcss').Config}*/ |
|
|
|
/** @type {import('tailwindcss').Config}*/ |
|
|
|
const config = { |
|
|
|
const config = { |
|
|
|
@ -89,11 +90,27 @@ const config = { |
|
|
|
hueRotate: { |
|
|
|
hueRotate: { |
|
|
|
20: "20deg", |
|
|
|
20: "20deg", |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
typography: { |
|
|
|
|
|
|
|
DEFAULT: { |
|
|
|
|
|
|
|
css: { |
|
|
|
|
|
|
|
// Remove first-line indentation |
|
|
|
|
|
|
|
'p:first-line': { |
|
|
|
|
|
|
|
'text-indent': '0', |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
// Ensure paragraphs don't have unwanted indentation |
|
|
|
|
|
|
|
p: { |
|
|
|
|
|
|
|
'text-indent': '0', |
|
|
|
|
|
|
|
'margin': '0', |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
}, |
|
|
|
}, |
|
|
|
}, |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
plugins: [ |
|
|
|
plugins: [ |
|
|
|
flowbite(), |
|
|
|
flowbite(), |
|
|
|
|
|
|
|
typography, |
|
|
|
plugin(function ({ addUtilities, matchUtilities }) { |
|
|
|
plugin(function ({ addUtilities, matchUtilities }) { |
|
|
|
addUtilities({ |
|
|
|
addUtilities({ |
|
|
|
".content-visibility-auto": { |
|
|
|
".content-visibility-auto": { |
|
|
|
|