-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_pull.scss
More file actions
22 lines (18 loc) · 835 Bytes
/
_pull.scss
File metadata and controls
22 lines (18 loc) · 835 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
// =============================
$_pull-enable: false !default;
// =============================
// Core Viewport Position Right Utility Helper Attributes
// =============================
//
// Core Viewport Position Right 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="pull-4/12" data-lap="pull-4/6".
//
// Note - Un-namespaced Classes are also generated and are to be used globally when an elements spacing is consistant across all viewports.
//
@if ($_pull-enable) {
@include generate-grid-percentage-batch($property: 'right', $namespace: 'pull');
}