Skip to content

Instantly share code, notes, and snippets.

View kasperfilstrup's full-sized avatar

Kasper Filstrup kasperfilstrup

View GitHub Profile
@kasperfilstrup
kasperfilstrup / twerkpoints.scss
Created February 18, 2015 07:22
Breakpoints and Tweakpoints
// From: http://www.sitepoint.com/breakpoints-tweakpoints-sass/
// Breakpoints/tweakpoints manager
// @param {String} $point - Breakpoint/tweakpoint name
@mixin respond-to($point) {
@if map-has-key($tweakpoints, $point) {
@media (min-width: map-get($tweakpoints, $point)) {
@content;
}
} @else if map-has-key($breakpoints, $point) {