Skip to content

Instantly share code, notes, and snippets.

View officialdrafty's full-sized avatar
🏠
Working from home

Drafty officialdrafty

🏠
Working from home
View GitHub Profile
@officialdrafty
officialdrafty / README.md
Created October 13, 2016 19:29 — forked from hofmannsven/README.md
My simply Git Cheatsheet
@officialdrafty
officialdrafty / bootstrap-breakpoints.sass
Created September 11, 2016 00:12 — forked from webinfinita/bootstrap-breakpoints.sass
Variables for responsive design in bootstrap with sass
@mixin breakpoint($point)
@if $point == lg
@media (min-width: 1200px)
@content
@else if $point == md
@media (min-width: 992px) and (max-width: 1199px)
@content
@else if $point == sm