Sha256: 11f9ddf010e59cbd58402e880e72c43b837e3c93ea4854af6a7ab7482b2948a4

Contents?: true

Size: 624 Bytes

Versions: 2

Compression:

Stored size: 624 Bytes

Contents

// Foundation for Sites
// https://get.foundation
// Licensed under MIT Open Source

////
/// @group forms
////

/// Default color for help text.
/// @type Color
$helptext-color: $black !default;

/// Default font size for help text.
/// @type Number
$helptext-font-size: rem-calc(13) !default;

/// Default font style for help text.
/// @type Keyword
$helptext-font-style: italic !default;

@mixin foundation-form-helptext {
  .help-text {
    $margin-top: ($form-spacing * 0.5) * -1;

    margin-top: $margin-top;
    font-size: $helptext-font-size;
    font-style: $helptext-font-style;
    color: $helptext-color;
  }
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
foundation-rails-6.9.0.0 vendor/assets/scss/forms/_help-text.scss
foundation-rails-6.6.2.0 vendor/assets/scss/forms/_help-text.scss