compass/frameworks/blueprint/stylesheets/blueprint/_debug.scss
2010-04-15 22:23:14 -07:00

12 lines
299 B
SCSS

@mixin showgrid($image: "grid.png") {
background: image_url($image);
}
@mixin blueprint-debug($grid_image: unquote("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);
}
}