css-grid-guides
v3.0.0
Published
Small JavaScript package to aid in development by revealing CSS Grid column guides
Downloads
78
Maintainers
Readme
CSS Grid Guides
A small library that reveals CSS grid guides to aid in development
Installation
npm i css-grid-guides
Usage
Make sure you're doing something like this in order for this library to work correctly
* {
box-sizing: border-box;
}
Call gg()
after the DOM has loaded
import { gg } from "css-grid-guides";
// Defaults
// {
// selector: ".grid",
// color: "rgb(240,128,128)",
// opacity: 0.3,
// showNumbers: true,
// }
// Use defaults
gg();
// Override specific properties
gg({
selector: ".grid-dev",
color: "green",
});