Skip to content

Instantly share code, notes, and snippets.

@pongo
Created July 19, 2017 19:10
Show Gist options
  • Select an option

  • Save pongo/ec7ab28831dbc3e6f870e8a466356b7e to your computer and use it in GitHub Desktop.

Select an option

Save pongo/ec7ab28831dbc3e6f870e8a466356b7e to your computer and use it in GitHub Desktop.
Less file variables scope
@import (reference) "settings"; // or `@import (multiple) "settings"`?
@color: red;
.hello {
color: @color;
padding: @padding;
}
.hello {
color: red;
padding: 10px;
}
.button {
color: green;
}
@color: green;
& { @import "hello"; }
.button {
color: @color;
}
@padding: 10px;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment