Skip to content

Instantly share code, notes, and snippets.

@mixin headings($from: 1, $to: 6){
$heading-selector: (unquote(""));
@for $i from $from through $to {
$heading-selector: $heading-selector, unquote("h#{$i}")
}
#{$heading-selector}{
@content
}
}
@vazquez
vazquez / Add Empty Dock Spaces.bash
Last active December 20, 2015 11:29
Command Line Snippets
defaults write com.apple.dock persistent-apps -array-add '{"tile-type"="spacer-tile";}'
killall Dock