THIS IS AN EXAMPLE, NOT FOR PRODUCTION USE
CSS box component
Simple box component. Import each scss
file into the respective level in your application.
To brand this component either totally replace the settings level in your app, or include your own settings file before this one if you want to keep some of the defaults.
Examples
HTML
<div class="c-box">box content</div>
<div class="c-box c-box--circle">box content</div>
Handlebars
<!-- standard box -->
{{#> box }}
Add content here
Can even be another partial
{{/box}}
<!-- circular box -->
{{#> circle }}
Add content here
Can even be another partial
{{/circle}}
@mixin
.class-name {
@include global-box;
}
.class-name {
@include global-box;
@include global-box--circle;
}