diff --git a/src/definitions/elements/container.less b/src/definitions/elements/container.less index 915f72d03..a360d7dc3 100644 --- a/src/definitions/elements/container.less +++ b/src/definitions/elements/container.less @@ -67,12 +67,13 @@ .ui.text.container { display: block; + font-family: @textFontFamily; max-width: @textWidth !important; + line-height: @textLineHeight; } .ui.text.container p { font-size: @textParagraphSize; - line-height: @textParagraphLineHeight; } diff --git a/src/themes/default/elements/container.variables b/src/themes/default/elements/container.variables index 9615f1094..3513eaf19 100644 --- a/src/themes/default/elements/container.variables +++ b/src/themes/default/elements/container.variables @@ -27,6 +27,8 @@ Types --------------------*/ +/* Text */ @textWidth: 700px; -@textParagraphSize: @large; -@textParagraphLineHeight: 1.5; \ No newline at end of file +@textFontFamily: @pageFont; +@textLineHeight: 1.5; +@textParagraphSize: @large; \ No newline at end of file