diff --git a/src/pretix/base/templates/pretixbase/email/base.html b/src/pretix/base/templates/pretixbase/email/base.html index ba8bf4565b..b7e24cbe4e 100644 --- a/src/pretix/base/templates/pretixbase/email/base.html +++ b/src/pretix/base/templates/pretixbase/email/base.html @@ -85,9 +85,6 @@ -webkit-hyphens: auto; hyphens: auto; } - p:last-child { - margin-bottom: 0; - } .footer { padding: 10px; @@ -116,6 +113,9 @@ width: 100%; height: auto; } + .content { + text-align: left; + } .content table { width: 100%; @@ -142,7 +142,8 @@ } .order-button { - padding-top: 5px + padding-top: 5px; + text-align: center; } .order-button a.button { font-size: 12px; @@ -173,7 +174,7 @@ body { direction: rtl; } - .content table td { + .content { text-align: right; } {% endif %} diff --git a/src/pretix/base/templates/pretixbase/email/simple_logo.html b/src/pretix/base/templates/pretixbase/email/simple_logo.html index 7c7bdbcdcb..229eb1c1f5 100644 --- a/src/pretix/base/templates/pretixbase/email/simple_logo.html +++ b/src/pretix/base/templates/pretixbase/email/simple_logo.html @@ -104,9 +104,6 @@ -webkit-hyphens: auto; hyphens: auto; } - p:last-child { - margin-bottom: 0; - } .footer { padding: 10px; @@ -136,6 +133,10 @@ display: block; } + .content { + text-align: left; + } + .content table { width: 100%; } @@ -197,7 +198,7 @@ body { direction: rtl; } - .content table td { + .content { text-align: right; } {% endif %}