Skip to content

Commit a6f5f87

Browse files
committed
Remove duplicate code from utilities
1 parent 3ba4a12 commit a6f5f87

1 file changed

Lines changed: 0 additions & 32 deletions

File tree

src/assets/scss/_utilities.scss

Lines changed: 0 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -266,38 +266,6 @@
266266
}
267267
}
268268

269-
// hardware-acceleration
270-
// @param $value: Accepted values: [ON | off]
271-
@mixin hardware-acceleration($value: on) {
272-
@if $value == on {
273-
transform: translate3d(0, 0, 0);
274-
backface-visibility: hidden;
275-
perspective: 1000;
276-
}
277-
278-
@else {
279-
transform: none;
280-
backface-visibility: visible;
281-
perspective: none;
282-
}
283-
}
284-
285-
// hardware-acceleration
286-
// @param $value: Accepted values: [on | OFF]
287-
@mixin interaction($value: off) {
288-
@if $value == off {
289-
cursor: default;
290-
user-select: none;
291-
pointer-events: none;
292-
}
293-
294-
@else {
295-
cursor: auto;
296-
user-select: all;
297-
pointer-events: all;
298-
}
299-
}
300-
301269
// strip-units
302270
// @param $number
303271
//@see http://stackoverflow.com/a/12335841

0 commit comments

Comments
 (0)