mirror of
https://github.com/google/pebble.git
synced 2025-03-16 01:01:20 +00:00
9 lines
187 B
SCSS
9 lines
187 B
SCSS
|
@mixin placeholder {
|
||
|
$placeholders: ":-webkit-input" ":-moz" "-moz" "-ms-input";
|
||
|
@each $placeholder in $placeholders {
|
||
|
&:#{$placeholder}-placeholder {
|
||
|
@content;
|
||
|
}
|
||
|
}
|
||
|
}
|