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
The config line for > ul > li p is transpiled to .prose > :where(ul > li p):not(:where([class~='not-prose'] *)) as per the test. The issue is that the transpiled line does not do what I expected it to do as demonstrated in the codesandbox.
Selector .prose > :where(ul > li p) is equivalent to ul > li .prose > p and not .prose > ul > li p. Was it the intention?
The text was updated successfully, but these errors were encountered:
What version of @tailwindcss/typography are you using?
v0.5.2
What version of Node.js are you using?
v17.8.0
What browser are you using?
Chrome
What operating system are you using?
macOS
Reproduction repository
https://codesandbox.io/s/immutable-sound-2lzxpr?file=/index.html
Describe your issue
The config line for
> ul > li p
is transpiled to.prose > :where(ul > li p):not(:where([class~='not-prose'] *))
as per the test. The issue is that the transpiled line does not do what I expected it to do as demonstrated in the codesandbox.Selector
.prose > :where(ul > li p)
is equivalent toul > li .prose > p
and not.prose > ul > li p
. Was it the intention?The text was updated successfully, but these errors were encountered: