Skip to content

Commit

Permalink
Fix merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
trevanhetzel committed Sep 12, 2014
2 parents d2f3091 + ad1ecc8 commit 52a7656
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
3 changes: 3 additions & 0 deletions css/sass/global/_mixins.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
@else if $size == large {
@media (min-width: $large) { @content; }
}
@else {
@media (min-width: $size) { @content; }
}
}

// Outline for form :focus states
Expand Down
5 changes: 5 additions & 0 deletions css/stylus/global/_mixins.styl
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ breakpoint($size) {
{block}
}
}
else {
@media (min-width: $size) {
{block}
}
}
}

// Outline for form focus states
Expand Down
2 changes: 1 addition & 1 deletion css/stylus/module/_off-canvas.styl
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
.off-canvas-right {
position: fixed;
top: 0;
width: var($oc-width, 17.5em);;
width: var($oc-width, 17.5em);
height: 100%;
transform: translateZ(0);
}
Expand Down

0 comments on commit 52a7656

Please sign in to comment.