// RAMEN FORM HINT COMPONENT
//
//
// Required Global Variables:
//
// N/A
//
//
// Required Component Variables:
//
// $form-hint-font-size: Sets the font size colour of form hint
// $form-hint-color: Sets the hint colour
// $form-hint-spacing-top: Space above the form hint
//
//

@mixin form-hint {
  color: $form-hint-color;
  font-size: $form-hint-font-size;
  margin: $form-hint-spacing-top 0 0;
}

.c-form-hint {
  @include form-hint;
}
