Commit 8dabab0f35 for woocommerce

commit 8dabab0f354a86e154a52d5870dc601465c4ec2f
Author: Ján Mikláš <neosinner@gmail.com>
Date:   Tue Nov 25 09:30:46 2025 +0100

    Show tax suffix on new line in order email totals (#62059)

    * Show tax suffix on new line in order email totals

    * Add changelog

    * Bump template version

diff --git a/plugins/woocommerce/changelog/wooplug-4778-ugly-tax-suffix-line-break-in-order-emails b/plugins/woocommerce/changelog/wooplug-4778-ugly-tax-suffix-line-break-in-order-emails
new file mode 100644
index 0000000000..367e94aa87
--- /dev/null
+++ b/plugins/woocommerce/changelog/wooplug-4778-ugly-tax-suffix-line-break-in-order-emails
@@ -0,0 +1,4 @@
+Significance: patch
+Type: enhancement
+
+Show tax suffix on new line in order email totals
diff --git a/plugins/woocommerce/templates/emails/email-styles.php b/plugins/woocommerce/templates/emails/email-styles.php
index 4033384bca..f6c357a30b 100644
--- a/plugins/woocommerce/templates/emails/email-styles.php
+++ b/plugins/woocommerce/templates/emails/email-styles.php
@@ -12,7 +12,7 @@
  *
  * @see     https://woocommerce.com/document/template-structure/
  * @package WooCommerce\Templates\Emails
- * @version 9.9.0
+ * @version 10.5.0
  */

 use Automattic\WooCommerce\Internal\Email\EmailFont;
@@ -282,6 +282,10 @@ body {
 	padding-top: 5px;
 }

+#body_content .email-order-details .order-totals .includes_tax {
+	display: block;
+}
+
 #body_content .email-order-details .order-totals-total th {
 	font-weight: bold;
 }