// Allow passing multiple lists of properties to transform
@mixin transform ($properties...) {
  transform: $properties;
}

@mixin no-transform {
  transform: none;
}
