Skip to content

Commit

Permalink
Merge pull request #1034 from mjschock/STENCIL-3592
Browse files Browse the repository at this point in the history
STENCIL-3592 - Fix H1-H6 font-sizing
  • Loading branch information
mjschock authored Jul 6, 2017
2 parents b9c43c6 + 0a00bab commit 65d7b69
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Draft
- Product Images were obscuring product details on smaller viewports [#1019](https://github.com/bigcommerce/cornerstone/pull/1019)
- Add region tags to two template files to support payments team banner integration with content service [#1023](https://github.com/bigcommerce/cornerstone/pull/1023)
- Fix H1-H6 font-sizing [#1034](https://github.com/bigcommerce/cornerstone/pull/1034)

## 1.8.2 (2017-06-23)
- Swaps `writeReview` for `write_review` to fix email link issue [#1017](https://github.com/bigcommerce/cornerstone/pull/1017)
Expand Down
24 changes: 23 additions & 1 deletion assets/scss/components/foundation/type/_type.scss
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,33 @@ cite {
}

.page-heading {
font-size: $h1-font-size;
margin: 0 0 spacing("double");
text-align: center;
}

h1 {
font-size: $h1-font-size;
}

h2 {
font-size: $h2-font-size;
}

h3 {
font-size: $h3-font-size;
}

h4 {
font-size: $h4-font-size;
}

h5 {
font-size: $h5-font-size;
}

h6 {
font-size: $h6-font-size;
}

.definitionList {
@include clearfix;
Expand Down

0 comments on commit 65d7b69

Please sign in to comment.