Skip to content

Instantly share code, notes, and snippets.

View motionharvest's full-sized avatar

Aaron motionharvest

View GitHub Profile
@motionharvest
motionharvest / sassextend.css
Last active September 6, 2017 19:09 — forked from antsa/sassextend.css
Sass Extend and Placeholder Selector Example
// =========================
// Example 1: using a @mixin
// =========================
// SCSS:
@mixin a_pink_box() {
float: left;
display: block;
color: pink;