Set line height multiplier to golden ratio for editor text blocks

This commit is contained in:
Tautvidas Sipavičius
2016-02-24 14:43:13 +02:00
parent dfc680f3a1
commit a856800e6d
2 changed files with 4 additions and 4 deletions

View File

@@ -30,3 +30,7 @@ $block-hover-highlight-color = $primary-active-color
.mailpoet_content
position: relative
line-height: 1.61803398875
p
line-height: 1.61803398875

View File

@@ -3,25 +3,21 @@
.mailpoet_text_block .mailpoet_content p {
color: {{ text.fontColor }};
font-size: {{ text.fontSize }};
line-height: {{ text.fontSize }};
font-family: {{ text.fontFamily }};
}
.mailpoet_text_block .mailpoet_content h1 {
color: {{ h1.fontColor }};
font-size: {{ h1.fontSize }};
line-height: {{ h1.fontSize }};
font-family: {{ h1.fontFamily }};
}
.mailpoet_text_block .mailpoet_content h2 {
color: {{ h2.fontColor }};
font-size: {{ h2.fontSize }};
line-height: {{ h2.fontSize }};
font-family: {{ h2.fontFamily }};
}
.mailpoet_text_block .mailpoet_content h3 {
color: {{ h3.fontColor }};
font-size: {{ h3.fontSize }};
line-height: {{ h3.fontSize }};
font-family: {{ h3.fontFamily }};
}
.mailpoet_content a {