Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Danilo-Araujo-Silva/c041e7bab0880ba7824829fc9ef4b82e to your computer and use it in GitHub Desktop.
Save Danilo-Araujo-Silva/c041e7bab0880ba7824829fc9ef4b82e to your computer and use it in GitHub Desktop.
// This certainly is not the best way to do this.
// But I couldn't find an approach using the Sass elements for now. If you have a better approach please let me know.
// convention to a local variable
$_local: (
// some stuff here
);
// if we need to add new entries that depends of the other ones we can do this:
$_local: map-merge(
$_local,
(
// more stuff here
)
);
...
...
...
// overriding the definitions
$_local: null;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment