The box object just boxes off its content. In other words: It gives the element a padding.
<div class="box">
Foo Bar Baz
</div>You can alter the padding of .box with the $inuit-box-padding variable:
$inuit-box-padding: $inuit-base-spacing-unit*2;The box object provides the following modifiers:
.box--tiny.box--small.box--large.box--huge.box--flush.box--tiny, .box--small, .box--large, .box--huge all vary the padding of the .box. Each one has its own dedicated variable to control that padding:
$inuit-box--padding--tiny: quarter($inuit-box-padding) !default;
$inuit-box--padding--small: halve($inuit-box-padding) !default;
$inuit-box--padding--large: double($inuit-box-padding) !default;
$inuit-box--padding--huge: quadruple($inuit-box-padding) !default;.box--flush removes the padding from .box.