2
0
mirror of synced 2025-02-24 17:08:11 +00:00
blog/themes/embark/source/css/01-tools/_tools.placeholder.scss
Jakub Sokołowski c7acd418c2
first commit
Signed-off-by: Jakub Sokołowski <jakub@status.im>
2020-06-18 12:29:57 +02:00

15 lines
237 B
SCSS

// Placeholder
@mixin placeholder {
&::-webkit-input-placeholder {
@content
}
&:-moz-placeholder {
@content
}
&::-moz-placeholder {
@content
}
&:-ms-input-placeholder {
@content
}
}