Skip to content

Instantly share code, notes, and snippets.

@necolas
Created April 15, 2014 03:22
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 necolas/10699438 to your computer and use it in GitHub Desktop.
Save necolas/10699438 to your computer and use it in GitHub Desktop.
SUIT CSS spacing with variables
:root {
--margin-MyComponent-part: var(--theme-margin-small);
}
.MyComponent {}
.MyComponent-part {
margin: var(--margin-MyComponent-part);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment