general

callout-divider() mixin

add a bottom border/padding/margin to help divide callout blocks into multiple sections

@mixin callout-divider { /* ... */ }
css
border-bottom: size('border-thick') solid color('background');
margin-bottom: size('gutter');
padding-bottom: size('gutter');

.form-label css

The label for a form field or input

.form-label {
  cursor: pointer;

  &[data-scope='field'] {
    display: block;
  }
}
label