Your IP : 216.73.216.95


Current Path : /var/www/storage/vendor/leafo/scssphp/tests/inputs/
Upload File :
Current File : /var/www/storage/vendor/leafo/scssphp/tests/inputs/list.scss

$list: (black);
$list: join($list, white, comma);

div {
  padding: join(10px 20px, 30px 40px);
  margin: join((0, 10px), (10px, 10px), space);
  background: linear-gradient($list);
}

$list: ();
$list: join($list, (red, blue), comma);

p {
  background: linear-gradient($list);
}