a9be15caf3
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
13 lines
212 B
SCSS
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);
|
|
} |