Commit 1adbe204 authored by Mark Otto's avatar Mark Otto

Fixes #10959: round the .lead values down to nearest pixel via floor()

parent 70463581
...@@ -390,7 +390,7 @@ p { ...@@ -390,7 +390,7 @@ p {
.lead { .lead {
margin-bottom: 20px; margin-bottom: 20px;
font-size: 16.099999999999998px; font-size: 16px;
font-weight: 200; font-weight: 200;
line-height: 1.4; line-height: 1.4;
} }
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -11,7 +11,7 @@ p { ...@@ -11,7 +11,7 @@ p {
} }
.lead { .lead {
margin-bottom: @line-height-computed; margin-bottom: @line-height-computed;
font-size: (@font-size-base * 1.15); font-size: floor(@font-size-base * 1.15);
font-weight: 200; font-weight: 200;
line-height: 1.4; line-height: 1.4;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment