mirror of
https://github.com/google/pebble.git
synced 2025-11-20 14:30:55 -05:00
Import the pebble dev site into devsite/
This commit is contained in:
11
third_party/bourbon/functions/_assign.scss
vendored
Normal file
11
third_party/bourbon/functions/_assign.scss
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
@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;
|
||||
}
|
||||
Reference in New Issue
Block a user