From: Joe Workman Date: Tue, 22 Mar 2022 17:19:00 +0000 (-0700) Subject: Merge pull request #762 from jsit/p-a-margin-outlook X-Git-Tag: v2.4.0^2~14 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1ed16c680683b47db166a06236091567803e6a13;p=thirdparty%2Ffoundation%2Ffoundation-emails.git Merge pull request #762 from jsit/p-a-margin-outlook Fix Outlook p margin bug, set margin to default on anchors inside p --- 1ed16c680683b47db166a06236091567803e6a13 diff --cc scss/components/_typography.scss index f0dfac41,4dad5830..1470a2be --- a/scss/components/_typography.scss +++ b/scss/components/_typography.scss @@@ -294,30 -243,14 +294,35 @@@ p line-height: $subheader-lineheight; color: $subheader-color; } + + a { // To fix Outlook margin issue #421 + margin: default; + Margin: default; + } } -small { +.text-xs { + font-size: $global-font-size / ($font-scale * $font-scale); +} + +.text-sm { + font-size: $global-font-size / $font-scale; +} + +.text-lg { + font-size: $global-font-size * $font-scale; +} + +.text-xl { + font-size: $global-font-size * ($font-scale * $font-scale); +} + +.text-xxl { + font-size: $global-font-size * ($font-scale * $font-scale * $font-scale); +} + +small, +.small { font-size: $small-font-size; color: $small-font-color; }