Last active
October 23, 2016 18:02
-
-
Save neutraltone/44992ce744f6cbc3dc5f2904c8d5fb7a to your computer and use it in GitHub Desktop.
Placeholder Mixin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// placeholder styling | |
@mixin placeholder($color) { | |
::-webkit-input-placeholder { | |
color: $color; | |
} | |
::-moz-placeholder { | |
color: $color; | |
} | |
:-ms-input-placeholder { | |
color: $color; | |
} | |
::-ms-input-placeholder { | |
color: $color; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment