cbl/blade-style-sass

v0.1.2 2020-07-31 08:05 UTC

This package is auto-updated.

Last update: 2024-03-29 04:18:44 UTC


README

A sass compiler engine for x-style Blade components using scssphp.

<button class="btn">My Button</button>

<x-style lang="scss">
    $color: purple;

    .btn{
        background: $color;
    }
</x-style>

The packet can be easily installed via composer.

composer require cbl/blade-style-sass

And that's it! The compiler engine is automatically registered and you are good to go.