Skip to content

Instantly share code, notes, and snippets.

View lazysergey's full-sized avatar
🌴

sergey_o lazysergey

🌴
View GitHub Profile
@lazysergey
lazysergey / bootstrap-breakpoints.sass
Created November 16, 2017 19:58 — 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