[email] Add margin for heading (#5193)

This commit is contained in:
Faris Ansari 2018-03-13 18:21:30 +05:30 committed by GitHub
parent 7eff57ce6a
commit 3ba121f82a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 19 additions and 2 deletions

View file

@ -4,7 +4,7 @@
"public/css/octicons/octicons.css",
"public/less/website.less",
"public/less/avatar.less",
"public/less/chat.less"
],
"js/frappe-web.min.js": [
@ -22,7 +22,7 @@
"public/js/frappe/query_string.js",
"website/js/website.js",
"public/js/frappe/misc/rating_icons.html",
"public/js/frappe/chat.js"
],
"js/control.min.js": [
@ -378,5 +378,8 @@
"public/js/legacy/layout.js",
"public/js/legacy/print_table.js",
"public/js/legacy/print_format.js"
],
"frappe/css/email.css": [
"public/less/email.less"
]
}

View file

@ -3,6 +3,15 @@ body {
line-height: 1.5;
color: #36414C;
}
h1,
h2,
h3,
h4,
h5,
h6 {
margin-top: 1em;
margin-bottom: 0.5em;
}
p {
margin: 1em 0 !important;
}

View file

@ -6,6 +6,11 @@ body {
color: @text-color;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1em;
margin-bottom: 0.5em;
}
p {
margin: 1em 0 !important;
}