mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
10 lines
165 B
SCSS
10 lines
165 B
SCSS
// test for even numbers, do something with the result
|
|
|
|
@function even($number) {
|
|
@if ($number % 2 == 0) {
|
|
@return true;
|
|
}
|
|
@else {
|
|
@return false;
|
|
}
|
|
} |