Fix Outlook p margin bug, set margin to default on anchors inside 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;
}