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
# Atom Beautify - Debugging information
The following debugging information was generated by `Atom Beautify` on `Sun Jan 08 2017 17:58:38 GMT-0500 (EST)`.
---
## Table Of Contents
- [Versions](#versions)
- [Original file to be beautified](#original-file-to-be-beautified)
- [Original File Contents](#original-file-contents)
@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