Last active
April 21, 2023 07:40
-
-
Save lonekorean/d0304cd5e5f76c9f240dccdf92f83f6f to your computer and use it in GitHub Desktop.
Registering custom properties
This file contains hidden or 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
CSS.registerProperty({ | |
name: '--tooth-width', | |
syntax: '<length>', | |
initialValue: '40px', | |
inherits: false | |
}); | |
CSS.registerProperty({ | |
name: '--tooth-height', | |
syntax: '<length>', | |
initialValue: '20px', | |
inherits: false | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment