ESPTrainer built with Meteor and React

_compat.scss 300B

12345678910111213
  1. @mixin scale($amount) {
  2. -webkit-transform: scale($amount);
  3. -moz-transform: scale($amount);
  4. -ms-transform: scale($amount);
  5. -o-transform: scale($amount);
  6. transform: scale($amount);
  7. }
  8. @mixin box-sizing($value) {
  9. -webkit-box-sizing: $value;
  10. -moz-box-sizing: $value;
  11. box-sizing: $value;
  12. }