Skip to content

Commit

Permalink
2.3.55
Browse files Browse the repository at this point in the history
  • Loading branch information
cdukes committed Mar 18, 2017
1 parent c21d2b2 commit dd3d6c1
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 2.3.55 (March 9, 2017)
- Set default paragraph styles
- Remove `font-smoothing`
- Add `format-detection` meta

## 2.3.54 (February 28, 2017)
- Register `polyfill.io` for improved browser compatibility
- Cleanup some SASS variables and `@include`s
Expand Down
1 change: 1 addition & 0 deletions includes/structure/header.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ function bfg_do_doctype() {
<head <?php echo genesis_attr( 'head' ); ?>>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="format-detection" content="telephone=no">
<?php

}
Expand Down
2 changes: 1 addition & 1 deletion sass/_toolkit.scss
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
}

@mixin type {
margin-bottom: $spacer;
margin: 0 0 $spacer;
letter-spacing: .01rem;
line-height: 1.5;

Expand Down
4 changes: 1 addition & 3 deletions sass/_type.scss
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ html.admin-bar-showing {

body {
font-family: $sans;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;

font-variant-ligatures: common-ligatures;
}
Expand All @@ -52,7 +50,7 @@ ul {
}

p {
margin: 0;
@include type;
}

b,
Expand Down

0 comments on commit dd3d6c1

Please sign in to comment.