Skip to content

Instantly share code, notes, and snippets.

View douglasanro's full-sized avatar
🗺️
Working from anywhere

Douglas Rosa douglasanro

🗺️
Working from anywhere
View GitHub Profile
@wiegertschouten
wiegertschouten / grid.scss
Created October 1, 2020 18:38
A very simple grid system built with SASS and CSS grid
$columns: 12;
$gap: 30px;
$breakpoints: (
xs: 480px,
sm: 768px,
md: 960px,
lg: 1170px,
xl: 1280px
);