Skip to content

Instantly share code, notes, and snippets.

@lonekorean
Last active April 21, 2023 07:40
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lonekorean/d0304cd5e5f76c9f240dccdf92f83f6f to your computer and use it in GitHub Desktop.
Save lonekorean/d0304cd5e5f76c9f240dccdf92f83f6f to your computer and use it in GitHub Desktop.
Registering custom properties
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