From 09b42ec3221b7a1409b7c7f547d14407c40e5744 Mon Sep 17 00:00:00 2001 From: Michael Rose Date: Thu, 15 Sep 2016 14:56:05 -0400 Subject: [PATCH 1/2] Remove empty maintenance listing --- CHANGELOG.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b48073df..edadfb85 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,8 +9,6 @@ - Remove duplicate include of `base_path` in category-list.html [#522](https://github.com/mmistakes/minimal-mistakes/pull/522) -### Maintenance - ## [3.4.6](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.4.6) ### Enhancements From a48327908e3dc434afffab21b81cdbb4b289a532 Mon Sep 17 00:00:00 2001 From: Josh Habdas Date: Fri, 16 Sep 2016 11:43:02 -0500 Subject: [PATCH 2/2] Typography for larger viewports. Closes #533 --- _sass/_reset.scss | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/_sass/_reset.scss b/_sass/_reset.scss index 7d33b497..d9ae7875 100644 --- a/_sass/_reset.scss +++ b/_sass/_reset.scss @@ -14,6 +14,14 @@ html { font-size: 18px; } + @include breakpoint($large) { + font-size: 20px; + } + + @include breakpoint($x-large) { + font-size: 22px; + } + -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; } @@ -176,4 +184,4 @@ input[type="search"]::-webkit-search-cancel-button { textarea { overflow: auto; /* remove vertical scrollbar in IE6-9*/ vertical-align: top; /* readability and alignment cross-browser*/ -} \ No newline at end of file +}