fix(rendering): Don't set a class on plaintext pre wrapping

Our HTML sanitizer that we run bodies through before rendering
strips off this class, so it's not currently working with the
class set. Since this CSS is specific to the email frame, should
be OK to have no class at all.
This commit is contained in:
Christine Spang 2016-12-14 20:35:39 -08:00
parent ace6cf4c9e
commit 1f2b162d0a

View file

@ -99,7 +99,7 @@
max-width: 100%;
}
pre.nylas-plaintext {
pre {
white-space: pre-wrap;
word-wrap: break-word;
}