This is the monorepo for Jess, a new, modern CSS pre-processor from the people who brought you Less. See the docs.
@import { width } from './values.ts';
@import { myMixin } from './mixins.jess';
@let iconWidth: $(width)px;
@mixin square(unit: 24px) {
width: $unit;
height: $unit;
}
.icon {
@include myMixin();
@include square($iconWidth);
color: cornflowerblue;
}
Seriously, you're going to want to star this repo.
To set up, run:
yarn install
This project is openly seeking contributors and collaborators. To contribute:
- Read the Code of Conduct.
- See the contributing guide.
- Check the Todos, and see what interests you.
- Find a core contributor (I mean, it's just Matthew Dean so far, but you can change that) and ask them about getting started.
- Have the todo assigned to you in Github.
- Submit your PR!