Ensure font-size utilities with none modifier works e.g.: text-sm/none
#15921
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR fixes an issue where classes such as
text-sm/nonedon't work as expected. The reason for this is thatleading-noneis the only hardcoded leading utility and is not coming from the@theme. This means thattext-sm/nonetries to do a lookup fornonebut it won't resolve.This PR fixes that by allowing
noneas a modifier.While working on this, I noticed that
text-sm/nonedid generate CSS:Notice that the
line-heightis missing. This means that any modifier that can't be resolved doesn't get theline-heightset, but it will generate CSS. In this case, no CSS should have been generated.Otherwise, all of these generate CSS which will only bloat your CSS and won't
work as expected. E.g.:
text-sm/foo,text-sm/bar, andtext-sm/baz:Fixes: #15911