You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 11, 2021. It is now read-only.
I noticed that the theme yielded in customForms does not include utilities that were added by other plugins. I have tried reordering the order of plugins such that @tailwindcss/custom-forms is after my custom plugin, but it doesn't look like it reflects any changes to the theme. Here's an example to illustrate what's happening:
module.exports={theme: {customForms: (theme)=>{console.log(theme('lineHeight'));// i don't see my added lineHeightsreturn{..};}},plugins: [require("./my-custom-theme"),// calls addUtilities(.., variants("lineHeight"))require("@tailwindcss/custom-forms")]}
Is this supported?
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I noticed that the
theme
yielded incustomForms
does not include utilities that were added by other plugins. I have tried reordering the order of plugins such that@tailwindcss/custom-forms
is after my custom plugin, but it doesn't look like it reflects any changes to the theme. Here's an example to illustrate what's happening:Is this supported?
The text was updated successfully, but these errors were encountered: