-
Notifications
You must be signed in to change notification settings - Fork 4.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for defining simple custom utilities in CSS via @utility
#14044
Merged
+319
−111
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
We’re backing out of defining functional utilities in CSS for now. The preferred syntax and behavior here isn’t exactly clear or optimal. We throw out any custom utility defined with a trailing `-*` to keep this syntax possibility open in the future.
adamwathan
reviewed
Jul 23, 2024
Co-authored-by: Adam Wathan <[email protected]>
Co-authored-by: Adam Wathan <[email protected]>
philipp-spiess
approved these changes
Jul 24, 2024
adamwathan
approved these changes
Jul 24, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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 allows you to add custom utilities to your project via the new
@utility
rule.For example, given the following:
A new
text-trim
utility is available and can be used directly or with variants:If a utility is defined more than one time the latest definition will be used:
Then using
text-trim
will produce the following CSS:You may also override specific existing utilities with this — for example to add a
text-rendering
property to thetext-sm
utility:Though it's preferred, should you not need to add properties, to override the theme instead.
Lastly, utilities with special characters do not need to be escaped like you would for a class name in a selector:
We do however explicitly error on certain patterns that we want to reserve for future use, for example
push-*
andpush-[15px]
.