In the official SASS mixins, it shows
@mixin transform($property) {
-webkit-transform: $property;
-ms-transform: $property;
transform: $property;
}
But when I downloaded Bulma, their mixins style is quite different. Can you help me understand or direct me to the relevant article?
=unselectable
-webkit-touch-callout: none
-webkit-user-select: none
-moz-user-select: none
-ms-user-select: none
user-select: none
%unselectable
+unselectable
Here I'm not able to understand the usage of =, % and +. (Maybe % is to extend but not sure on it.)