Skip to content
This repository has been archived by the owner on Aug 30, 2018. It is now read-only.

Commit

Permalink
Merge pull request #425 from Shopify/mixin-update
Browse files Browse the repository at this point in the history
Mixin fixes (typo, defaults)
  • Loading branch information
cshold committed Jun 2, 2015
2 parents dc9ece5 + d314dc1 commit aa0596e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions assets/timber.scss.liquid
Expand Up @@ -215,16 +215,16 @@ $socialIconFontStack: 'icons';
}
}

@mixin transform($transform: 0.1s all) {
@mixin transform($transform) {
@include prefixer(transform, $transform, ms webkit spec);
}

@mixin user-select($value) {
@mixin user-select($value: none) {
@include prefixer(user-select, $value, webkit moz ms spec);
}

@mixin backface($visibility: hidden) {
@include prefixer(backface-visiblity, $visibility, webkit spec);
@include prefixer(backface-visibility, $visibility, webkit spec);
}

@function em($target, $context: $baseFontSize) {
Expand Down

0 comments on commit aa0596e

Please sign in to comment.