Skip to content

Instantly share code, notes, and snippets.

*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
html{
font-size: 1em;
line-height: 1.6;
font-family: sans-serif;
@netotaku
netotaku / .scss
Last active December 4, 2020 16:43
Wrote yet another grid system lads. This one is BEM + CSS Grids.
@mixin hgrid($columns, $gap, $break, $alias) {
display: grid;
grid-template-columns: repeat($columns, 1fr);
gap: $gap;
&__u{
grid-column: span $columns;