1.1.0 • Published 3 years ago

@themesmarket/block-mixins v1.1.0

Weekly downloads
-
License
ISC
Repository
-
Last release
3 years ago

Block Mixins

.wp-block-some-block {
    // All devices
    // -------------------------------------------------------


    // Element < 1024px ...
    // -------------------------------------------------------
    @include blockOnTablet {
        //background: #e4ffe1;
    }

    // Element < 580px ...
    // -------------------------------------------------------
    @include blockOnPhone {
        //background: #ffe1e1;
    }
}