12 lines
290 B
SCSS
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);
|
|
}
|
|
}
|