ffffng/app/styles/_mixins.scss

12 lines
186 B
SCSS

@mixin not-selectable {
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}
%not-selectable {
@include not-selectable;
}