mirror of
https://github.com/YunoHost/doc.git
synced 2024-09-03 20:06:26 +02:00
11 lines
No EOL
243 B
SCSS
11 lines
No EOL
243 B
SCSS
@function assign-inputs($inputs, $pseudo: null) {
|
|
$list : ();
|
|
|
|
@each $input in $inputs {
|
|
$input: unquote($input);
|
|
$input: if($pseudo, $input + ":" + $pseudo, $input);
|
|
$list: append($list, $input, comma);
|
|
}
|
|
|
|
@return $list;
|
|
} |