Revert "DEV: prioritize new email styles over existing, to make customization easier (#30244)" (#30297)

This reverts commit 9694dc6cb0.

Some of our previous email styling depended on this 'incorrect' ordering, so the change caused some text to become illegible. Reverting while we work out a better solution
This commit is contained in:
David Taylor 2024-12-16 11:16:17 +00:00 committed by GitHub
parent 537f09912e
commit ce8c2ef6d9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ module Email
existing = node["style"]
if existing.present?
# merge styles
node["style"] = "#{existing}; #{new_styles}"
node["style"] = "#{new_styles}; #{existing}"
else
node["style"] = new_styles
end