compass/frameworks/blueprint/stylesheets/blueprint/_debug.scss
2010-11-12 10:26:08 -08:00

12 lines
290 B
SCSS

@mixin showgrid($image: "grid.png") {
background: image-url($image);
}
@mixin blueprint-debug($grid-image: "grid.png") {
// Use this class on any column or container to see the grid.
// TODO: prefix this with the project path.
.showgrid {
@include showgrid($grid-image);
}
}