SU-SWS/decanter

View on GitHub
core/src/scss/utilities/mixins/typography/_types.scss

Summary

Maintainability
Test Coverage

///
/// Default shared styling for display (e.g., header) font styles.
///
/// @name types
///
/// @group typography
@mixin types {
  @include font-smoothing;
  @include margin(0 null null);

  clear: both;
  font-weight: $su-font-bold;
  line-height: $su-displays-line-height;

  a {
    text-decoration: none;
    font-weight: $su-font-bold;

    &:hover,
    &:focus {
      text-decoration: underline;
    }
  }
}