-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_push.scss
More file actions
22 lines (18 loc) · 809 Bytes
/
_push.scss
File metadata and controls
22 lines (18 loc) · 809 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// =============================
// Enable Private Variables
// =============================
$_push-enable: false !default;
// =============================
// Core Viewport Position Left Utility Helper Attributes
// =============================
//
// Core Viewport Position Left Utility Helper Attributes are generated via the below mixin to create attributes/classes
// for certain viewports.
// The advantage to this, is it allows position a certain element specifically for a breakpoint which you have defined.
// Example Use - data-desk="push-4-12" data-lap="push-4-6".
//
// Note - Un-namespaced Classes are to be used globally when an elements spacing is consistant across all viewports.
//
@if ($_push-enable) {
@include generate-grid-percentage-batch($property: 'left', $namespace: 'push');
}