blob: 15cb319c8cfba3da631f3bd7b9aefac58309e48e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// reset/display fixes for emails contents
.message-content {
@extend .p1;
// rules coming from Angular
box-sizing: content-box; // to avoid problems in some emails
border-radius: 0 0 $global-border-radius $global-border-radius;
// remove reset margins
blockquote, dl, ol, p, pre, td, th, ul {
margin-top: 0;
margin-bottom: 0;
}
p {
margin-top: 1em;
margin-bottom: 1em;
}
table {
margin-bottom: 0;
}
}
|