mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
Fixes #10959: round the .lead values down to nearest pixel via floor()
This commit is contained in:
parent
704635818f
commit
1adbe2043a
3 changed files with 3 additions and 3 deletions
2
dist/css/bootstrap.css
vendored
2
dist/css/bootstrap.css
vendored
|
@ -390,7 +390,7 @@ p {
|
|||
|
||||
.lead {
|
||||
margin-bottom: 20px;
|
||||
font-size: 16.099999999999998px;
|
||||
font-size: 16px;
|
||||
font-weight: 200;
|
||||
line-height: 1.4;
|
||||
}
|
||||
|
|
2
dist/css/bootstrap.min.css
vendored
2
dist/css/bootstrap.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue