Skip to content

Commit

Permalink
add fix proposed in pure-css/pure#41 (comment)
Browse files Browse the repository at this point in the history
  • Loading branch information
tilomitra committed Aug 20, 2013
1 parent dc9e464 commit 534df12
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion public/css/main.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
body {
font-family: sans-serif;
font-family: "proxima-nova", sans-serif;
color: #777;
}

Expand Down Expand Up @@ -77,6 +77,22 @@ dd {
text-align: center;
}

/* Putting the font-family to Arial makes sure the
letter and word spacing collapsing works
https://github.com/yui/pure/issues/41#issuecomment-22147419 */

.pure-g,
.pure-g-r {
font-family: "Helvetica", "Arial", sans-serif;
}

/* Declaring the font-family on the children ensures
that the grid doesn't flow to a new line. */
.pure-g [class *= "pure-u"],
.pure-g-r [class *= "pure-u"] {
font-family: "proxima-nova", sans-serif;
}


/* --------------------------
* Header Module Styles
Expand Down

0 comments on commit 534df12

Please sign in to comment.