Ei kuvausta
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_functions.scss 277B

123456789101112131415
  1. // Set Text Color
  2. @function set-text-color($color) {
  3. @if (lightness($color) > 50) {
  4. @return #000;
  5. } @else {
  6. @return #fff;
  7. }
  8. }
  9. // Transform mixin
  10. @mixin transform($property) {
  11. --webkit-transform: $property;
  12. -ms-transform: $property;
  13. transform: $property;
  14. }