I have a question about the use of less mixin in different style sheets.
I have 2 sheets of initial styles: reset.less and styleguide.less
I wonder how can I define a mixin in styleguide.less title.
And the reset just use it.
Example:
**styleguide.less**
.title() {
text-decoration: underline;
}
**reset.less**
.h1 {
.title();
}