Skip to content

Commit

Permalink
Fixes #10959: round the .lead values down to nearest pixel via floor()
Browse files Browse the repository at this point in the history
  • Loading branch information
mdo committed Oct 7, 2013
1 parent 7046358 commit 1adbe20
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/css/bootstrap.css
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ p {

.lead {
margin-bottom: 20px;
font-size: 16.099999999999998px;
font-size: 16px;
font-weight: 200;
line-height: 1.4;
}
Expand Down
2 changes: 1 addition & 1 deletion dist/css/bootstrap.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion less/type.less
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ p {
}
.lead {
margin-bottom: @line-height-computed;
font-size: (@font-size-base * 1.15);
font-size: floor(@font-size-base * 1.15);
font-weight: 200;
line-height: 1.4;

Expand Down

0 comments on commit 1adbe20

Please sign in to comment.