N°2314 - Markup extensibility: Add default color to body node

This commit is contained in:
Stephen Abello
2020-02-10 15:28:16 +01:00
parent 888d0775e6
commit 72fad49c4e
2 changed files with 2 additions and 0 deletions

View File

@@ -66,6 +66,7 @@ $frame-background-color: $gray-extra-light !default;
$text-color: #000 !default;
$box-radius: 0px !default;
$box-shadow-regular: 0 1px 1px rgba(0, 0, 0, 0.15) !default;
$body-background-color : $white !default;
$hyperlink-color: $complement-color !default;
$hyperlink-text-decoration: none !default;

View File

@@ -22,6 +22,7 @@
body {
font-family: Tahoma, Verdana, Arial, Helvetica;
font-size: 10pt;
background-color: $body-background-color;
color: $text-color;
margin: 0; /* Remove body margin/padding */
padding: 0;