Your IP : 216.73.216.95


Current Path : /var/www/storage2/vendor/leafo/scssphp/tests/inputs/
Upload File :
Current File : /var/www/storage2/vendor/leafo/scssphp/tests/inputs/default_args.scss


@mixin cool($color: blue) {
    margin: 100px;
}

@function what($height: red) {
    @return $height;
}

div {
    height: what();
    @include cool;
}