Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <markdotto@gmail.com>2017-01-02 22:03:25 +0300
committerMark Otto <markdotto@gmail.com>2017-01-02 22:03:25 +0300
commit48f452b000450e27d6c00b6c369e3a483ccdf14b (patch)
tree428515e96ff1f509677ab3135b7df901cb05a416 /scss/_type.scss
parentb6b6deff57cca550960a5eff0a1ccabc43c4d31e (diff)
fixes #21511: set line-height to 1.1 for display headings
- had to rearrange vars to re-use heading line-height - align values while we're at it
Diffstat (limited to 'scss/_type.scss')
-rw-r--r--scss/_type.scss4
1 files changed, 4 insertions, 0 deletions
diff --git a/scss/_type.scss b/scss/_type.scss
index cb4a035fcb..13a64b06f3 100644
--- a/scss/_type.scss
+++ b/scss/_type.scss
@@ -27,18 +27,22 @@ h6, .h6 { font-size: $font-size-h6; }
.display-1 {
font-size: $display1-size;
font-weight: $display1-weight;
+ line-height: $display-line-height;
}
.display-2 {
font-size: $display2-size;
font-weight: $display2-weight;
+ line-height: $display-line-height;
}
.display-3 {
font-size: $display3-size;
font-weight: $display3-weight;
+ line-height: $display-line-height;
}
.display-4 {
font-size: $display4-size;
font-weight: $display4-weight;
+ line-height: $display-line-height;
}