column-setter
column-setter copied to clipboard
Custom responsive grids in Sass that work in older browsers.
I'm starting an early attempt to upgrade our implementation of Column Setter to v2. I tried copying in the new versions without changing anything else just to see what would...
I include this package.json when I use column-setter so that I can load it via [npm-sass](https://www.npmjs.com/package/npm-sass). Not sure how complete this is (I've never publish a package before!), but hopefully...
It'd be nice for people depending on this library to make that dependency explicit and have an easy way to pull in any updates. The natural way for that would...
Since grid settings are all currently integers (`$mar: 68; $col: 68; $gut: 26;`), but `$max-width` is defined as a string (e.g., `$max-width: 1680px;`), it’s a bit tricky to do Sass...
Allow the user to optionally customize the z-index of the column overlay, like so: ``` $overlay-z-index: 100; ```
Something that came up when working on [the “Get Involved” module](https://github.com/propublica/propublica.org/pull/597): when padding is applied to a container, it adds quite a bit of complexity to inner `colspan()` calculations. Just...
Right now, the `grid` function accepts a class name for its first argument: `@include grid(content);` , which applies a grid to anything with a `.content` class. I think it’d be...
Right now, josef lets you define a grid globally, and reference those layouts whenever `@include grid(classname);` is invoked. What I’d _love_ to be able to do is to define a...
If you use the `full-width`function on an object at a certain breakpoint but don’t want it to be full width at later breakpoints, you have to override the `width`, `margin-left`,...