Skip to content

Commit

Permalink
Merge pull request #116 from nikolaswise/master
Browse files Browse the repository at this point in the history
font fix
  • Loading branch information
paulcpederson committed Feb 13, 2015
2 parents c5f1469 + bde87b5 commit 29e8b94
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 69 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## v0.0.10

Browser Testing?
### Modified
- Change bold styles on body from Frutiger 65 to Frutiger 55

## v0.0.9

Expand Down
12 changes: 6 additions & 6 deletions lib/sass/calcite-web/type/_faces.scss
Original file line number Diff line number Diff line change
Expand Up @@ -61,25 +61,25 @@
@mixin body-face() {
@include tracking($body-tracking);
font-family: $body-family; font-weight: 300; font-style: normal;
b, strong {font-weight: 700;}
b, strong {font-weight: 500;}
}

@mixin body-italic() {
@include tracking($body-tracking);
font-family: $body-family; font-weight: 300; font-style: italic;
b, strong {font-weight: 700;}
b, strong {font-weight: 500;}
}

@mixin body-bold() {
@include tracking($body-tracking);
font-family: $body-family; font-weight: 700; font-style: normal;
b, strong {font-weight: 700;}
font-family: $body-family; font-weight: 500; font-style: normal;
b, strong {font-weight: 500;}
}

@mixin body-bold-italic() {
@include tracking($body-tracking);
font-family: $body-family; font-weight: 700; font-style: italic;
b, strong {font-weight: 700;}
font-family: $body-family; font-weight: 500; font-style: italic;
b, strong {font-weight: 500;}
}

// ┌────────────────┐
Expand Down
Loading

0 comments on commit 29e8b94

Please sign in to comment.