Style the general dashboard icons

This commit is contained in:
Henne Vogelsang 2014-08-01 10:12:04 +02:00
parent d39d10d3f7
commit e9bf2f8399
4 changed files with 70 additions and 18 deletions

View file

@ -0,0 +1,21 @@
@mixin breakpoint($class) {
@if $class == xs {
@media (max-width: 767px) { @content; }
}
@else if $class == sm {
@media (min-width: 750px) { @content; }
}
@else if $class == md {
@media (min-width: 970px) { @content; }
}
@else if $class == lg {
@media (min-width: 1170px) { @content; }
}
@else {
@warn "Breakpoint mixin supports: xs, sm, md, lg";
}
}