mirror of
https://github.com/YunoHost/doc.git
synced 2024-09-03 20:06:26 +02:00
7b447ac5ae
Creating the pages hierarchy for transitioning to Grav
13 lines
No EOL
212 B
SCSS
13 lines
No EOL
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);
|
|
} |