Skip to content

Commit

Permalink
fix(styles): user-select mixin now uses value param (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
evilfant authored and pimenovoleg committed Jun 7, 2018
1 parent 1b77d4f commit f57b3ea
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/lib/core/styles/common/_vendor-prefixes.scss
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
@mixin user-select($value) {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-user-select: $value;
-moz-user-select: $value;
-ms-user-select: $value;
user-select: $value;
}

@mixin input-placeholder {
Expand Down

0 comments on commit f57b3ea

Please sign in to comment.