diff --git a/core/dist/css/decanter.css b/core/dist/css/decanter.css index 48c017518..c635b6e9f 100644 --- a/core/dist/css/decanter.css +++ b/core/dist/css/decanter.css @@ -2975,8 +2975,7 @@ h3, h4, h5, h6, -*[class^="su-type"], -.su-font-splash { +*[class^="su-type"] { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin-top: 0; @@ -2989,8 +2988,7 @@ h6, h4 a, h5 a, h6 a, - *[class^="su-type"] a, - .su-font-splash a { + *[class^="su-type"] a { text-decoration: none; font-weight: 700; } @@ -3062,9 +3060,18 @@ dfn { letter-spacing: -0.012em; } .su-font-splash { + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + margin-top: 0; + clear: both; + font-weight: 700; + line-height: 1.2; font-size: 3.0517578125em; margin-bottom: 0; letter-spacing: -0.016em; } + .su-font-splash a { + text-decoration: none; + font-weight: 700; } @media (max-width: 767px) { .su-font-splash { font-size: 2.5939941406em; } } diff --git a/core/src/scss/elements/typography/_typography.scss b/core/src/scss/elements/typography/_typography.scss index d0140da8a..5624b2b87 100644 --- a/core/src/scss/elements/typography/_typography.scss +++ b/core/src/scss/elements/typography/_typography.scss @@ -48,8 +48,7 @@ h3, h4, h5, h6, -*[class^="su-type"], -.su-font-splash { +*[class^="su-type"] { @include types; } diff --git a/core/src/scss/utilities/mixins/typography/_font-splash.scss b/core/src/scss/utilities/mixins/typography/_font-splash.scss index 36d60c6be..39e16f054 100644 --- a/core/src/scss/utilities/mixins/typography/_font-splash.scss +++ b/core/src/scss/utilities/mixins/typography/_font-splash.scss @@ -8,6 +8,7 @@ // Style guide: Mixins.Typography.font-splash // @mixin font-splash { + @include types; @include modular-typography(5); @include margin(null null 0); letter-spacing: -0.016em; diff --git a/core/src/scss/utilities/mixins/typography/index.scss b/core/src/scss/utilities/mixins/typography/index.scss index 9a8a3dc92..cc68d2bf4 100644 --- a/core/src/scss/utilities/mixins/typography/index.scss +++ b/core/src/scss/utilities/mixins/typography/index.scss @@ -9,6 +9,7 @@ // @import +'types', 'big-paragraph', 'caption', 'credits', @@ -28,5 +29,5 @@ 'type-c', 'type-d', 'type-e', -'type-f', -'types'; +'type-f' +;