Jack was authored from the configuration backwards to a compiled visual. One of the goals was to build a design system that you didn't have to wage battles against in a war of specificity. This ensures you're not stuck with an end result that's overly complicated to customize. The user of the system was put first and foremost.
$include_component_card: true;
.$jack_include_all: true !default;
. You may cherry-pick components to exclude at this point. Setting $include_component_card: false;
before Jack's Sass compiles would include all components minus the card one. Conversely, you can set $jack_include_all: false;
followed by $include_component_card: true;
to output just the card component.// Explicitly exclude the margin spacing utility classes
$include_util_margins: false;
// Create a new class by extending a placeholder selector that's emitted by spacing.scss
.example-with-top-margin {
@extend %m-t-md-2;
}
// Explicitely exclude the grid classes
$include_component_grid: false;
// Create left navigation (two-columns wide)
.left-nav {
@extend %col-2;
}