Files
dev-epau.archi.fr/user/themes/antimatter/scss/nucleus/functions/_range.scss
T
2021-10-01 16:14:19 +02:00

13 lines
212 B
SCSS

@function lower-bound($range){
@if length($range) <= 0 {
@return 0;
}
@return nth($range,1);
}
@function upper-bound($range) {
@if length($range) < 2 {
@return 999999999999;
}
@return nth($range, 2);
}