File "content_with_function.scss"

Full path: /home/cakedeco/retaildirectonline.co.uk/system/storage/vendor/leafo/scssphp/tests/inputs/content_with_function.scss
File size: 249 B (249 B bytes)
MIME-type: text/plain
Charset: utf-8

Download   Open   Edit   Advanced Editor &nnbsp; Back

$test-var: true;

@mixin mixin-using-content() {
    @content;
}

@function test-function($value) {
    @return $value;
}

@include mixin-using-content {
    @if $test-var {
        body {
            padding: test-function(1 px);
        }
    }
}