corrections found while writing documentation

This commit is contained in:
rglover 2017-06-05 16:44:35 -05:00
parent 5485eb9260
commit ab22ebc967
17 changed files with 127 additions and 42 deletions

View file

@ -0,0 +1,23 @@
@mixin breakpoint($point) {
@if $point == desktop-large {
@media (min-width: 1200px) { @content; }
} @else if $point == desktop {
@media (min-width: 1024px) { @content; }
} @else if $point == tablet {
@media (min-width: 768px) { @content; }
} @else if $point == handheld-large {
@media (min-width: 480px) { @content; }
} @else {
@media (min-width: $point) { @content; }
}
}
@mixin ie {
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
@content;
}
@supports (-ms-accelerator:true) {
@content;
}
}