File "default_args.scss"
Full path: /home/cakedeco/retaildirectonline.co.uk/system/storage/vendor/leafo/scssphp/tests/inputs/default_args.scss
File
size: 155 B (155 B bytes)
MIME-type: text/plain
Charset: utf-8
Download Open Edit Advanced Editor &nnbsp; Back
@mixin cool($color: blue) {
margin: 100px;
}
@function what($height: red) {
@return $height;
}
div {
height: what();
@include cool;
}