Skip to content

Instantly share code, notes, and snippets.

@niikkiin
Created March 7, 2021 02:27
Show Gist options
  • Save niikkiin/366d88ae4d728366a419240262d5dd25 to your computer and use it in GitHub Desktop.
Save niikkiin/366d88ae4d728366a419240262d5dd25 to your computer and use it in GitHub Desktop.
Placeholder mixins
/*
SECTION PLACEHOLDERS MIXINS
Usage:
input {
@include placeholder {
//STYLES here
}
}
Output
input::-webkit-input-placeholder {
//STYLES here
}
input:-moz-placeholder {
//STYLES here
}
input::-moz-placeholder {
//STYLES here
}
input:-ms-input-placeholder {
//STYLES here
}
}*/
@mixin placeholder {
&::-webkit-input-placeholder {
@content;
}
&:-moz-placeholder {
@content;
}
&::-moz-placeholder {
@content;
}
&:-ms-input-placeholder {
@content;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment