1
0
mirror of synced 2024-11-23 21:36:09 +03:00
select2/themes/learn2/scss/nucleus/functions/_range.scss

13 lines
212 B
SCSS
Raw Normal View History

2017-09-03 03:34:47 +03:00
@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);
}