Skip to content

Commit

Permalink
Fixes #6547: Make blockquotes use multiple of @baseFontSize
Browse files Browse the repository at this point in the history
  • Loading branch information
mdo committed Jan 12, 2013
1 parent 88e8169 commit 4de3a77
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/assets/css/bootstrap.css
Original file line number Diff line number Diff line change
Expand Up @@ -899,9 +899,9 @@ blockquote {

blockquote p {
margin-bottom: 0;
font-size: 16px;
font-size: 17.5px;
font-weight: 300;
line-height: 25px;
line-height: 1.25;
}

blockquote small {
Expand Down
4 changes: 3 additions & 1 deletion less/type.less
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,9 @@ blockquote {
border-left: 5px solid @grayLighter;
p {
margin-bottom: 0;
#font > .shorthand(16px,300,@baseLineHeight * 1.25);
font-size: @baseFontSize * 1.25;
font-weight: 300;
line-height: 1.25;
}
small {
display: block;
Expand Down

0 comments on commit 4de3a77

Please sign in to comment.