compass-aura 0.3 → 0.3.1
Sign up to get free protection for your applications and to get access to all the features.
- data/stylesheets/aura/_functions.scss +19 -0
- metadata +2 -1
@@ -97,6 +97,25 @@
|
|
97
97
|
}
|
98
98
|
@return $aura-breakpoints;
|
99
99
|
}
|
100
|
+
|
101
|
+
////////////////////////
|
102
|
+
// Aura Breakpoints
|
103
|
+
////////////////////////
|
104
|
+
@function aura-break($size) {
|
105
|
+
@if $size == 'full' {
|
106
|
+
@return nth($aura-breakpoints, 1);
|
107
|
+
}
|
108
|
+
@else if $size == 'large' {
|
109
|
+
@return nth($aura-breakpoints, 2);
|
110
|
+
}
|
111
|
+
@else if $size == 'medium' {
|
112
|
+
@return nth($aura-breakpoints, 3);
|
113
|
+
}
|
114
|
+
@else if $size == 'small' {
|
115
|
+
@return nth($aura-breakpoints, 4);
|
116
|
+
}
|
117
|
+
}
|
118
|
+
|
100
119
|
//////////////////////////////
|
101
120
|
// Aura Grid Functions
|
102
121
|
//////////////////////////////
|