makersacademy / components

Components for building Makers Academy interfaces.
http://makersacademy.github.io/components
MIT License
3 stars 1 forks source link

Add singlularity grid #90

Open leoallen85 opened 9 years ago

leoallen85 commented 9 years ago

As a front-end designer In order to remove magic numbers and clean up the CSs I want to switch to the singularity grid

sjmog commented 9 years ago

Will get rid of 'magic numbers' for horizontal values in the styles SCSS.

Singularity offers a modular scale grid, which we are using by math. Essentially a bunch of statements like this:

.foo {
  width: 29em;
}

will become

.foo {
  @include ms-col(2);
}