Skip to content

Instantly share code, notes, and snippets.

View burrich's full-sized avatar

nj burrich

  • Brittany
View GitHub Profile
@burrich
burrich / base.css
Last active January 25, 2018 16:52
*,
*:before,
*:after {
box-sizing: border-box;
}
body {
margin: 0;
}
@burrich
burrich / sass-component.scss
Created April 26, 2017 23:49
Sass component example
// an icons stack component example (used on a Font Awesome vertical stack)
%icons-stack {
position: absolute;
font-size: 1.4em;
}
@mixin icons-stack($top, $right, $bottom, $left) {
@extend %icons-stack;