sakamies / postcss-gridlover

Enables using Gridlover sx and gr units in your CSS
MIT License
13 stars 1 forks source link

vertical grid #7

Open eduarddotgg opened 7 years ago

eduarddotgg commented 7 years ago

It would be nice to generate vertical grid, so there was visual representation of grid for development.

What do you think?

sakamies commented 7 years ago

You can do a vertical grid with a bit of css. I should probably add this to the examples.

body {
  background-image: linear-gradient(currentColor 1px, transparent 1px);
  background-size: 1gr 1gr;
  background-position: 0% 0%;
  background-repeat: repeat;
}