Skip to content

Commit

Permalink
Merge pull request #12 from TaoXuSheng/fix-reademe-typo
Browse files Browse the repository at this point in the history
fix typo
  • Loading branch information
MT authored Apr 20, 2018
2 parents 9206481 + 20a1125 commit eda811e
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ add(a, b)
else
a * b
default-border-radius(prop, n)
-webkit-{border}-radius n
-moz-{border}-radius n
{border}-radius n
default-border-radius(prop, args)
-webkit-{prop}-radius args
-moz-{prop}-radius args
{prop}-radius args
body
padding add(10px, 5)
Expand All @@ -74,10 +74,10 @@ body
}
}
@mixin default-border-radius($prop, $n) {
-webkit-#{$prop}-radius: $n;
-moz-#{$prop}-radius: $n;
#{$prop}-radius: $n;
@mixin default-border-radius($prop, $args) {
-webkit-#{$prop}-radius: $args;
-moz-#{$prop}-radius: $args;
#{$prop}-radius: $args;
}
body {
Expand Down

0 comments on commit eda811e

Please sign in to comment.