1.0.1 • Published 7 years ago

@springernature/fec-box v1.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
7 years ago

CSS box pattern

Simple box pattern. Import each scss file into the respective level in your application. If not using the defaults then create your own settings level file within your application.

Examples

Standard using classes

<div class="p-box">box content</div>

Circle using classes

<div class="p-box p-box--circle">box content</div>

Standard using @mixin

.class-name {
    @include fec-box;
}

Circle using @mixin

.class-name {
    @include fec-box;
    @include fec-box--circle;
}