p0c-website

Proof of concepts for fun and profit
git clone https://git.in0rdr.ch/p0c-website.git
Log | Files | Refs | Pull requests | README | LICENSE

_placeholder.scss (187B)


      1 @mixin placeholder {
      2   $placeholders: ":-webkit-input" ":-moz" "-moz" "-ms-input";
      3   @each $placeholder in $placeholders {
      4     &:#{$placeholder}-placeholder {
      5       @content;
      6     }
      7   }
      8 }