From 572e88120e4a6060456b06cae0ecd3f3c9c67393 Mon Sep 17 00:00:00 2001 From: Guillaume DENIS Date: Wed, 8 Jul 2026 15:39:45 +0200 Subject: [PATCH] style(email-template): arrondit davantage banner et bloc de code MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - banner: border-radius 14 -> 18px - bloc de code: fond et border-radius (14px) portés par le
 pour un
  arrondi fiable en aperçu, padding réduit (16x18 -> 12x14)

Co-Authored-By: Claude Opus 4.8 
---
 preferences.html | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/preferences.html b/preferences.html
index 1bd279e..32db4c7 100644
--- a/preferences.html
+++ b/preferences.html
@@ -1568,14 +1568,14 @@ function renderEmailHtml(src, ctx){
       const color = m[1] || '#5b9cf5', buf = [];
       for(i++; i < lines.length && !/^:::\s*$/.test(lines[i]); i++) buf.push(lines[i]);
       i++;
-      html += '
' + inline(buf.join('
')) + '
'; + html += '
' + inline(buf.join('
')) + '
'; continue; } if(/^```/.test(line)){ const buf = []; for(i++; i < lines.length && !/^```/.test(lines[i]); i++) buf.push(lines[i]); i++; - html += '
' + buf.join('\n') + '
'; + html += '
' + buf.join('\n') + '
'; continue; } if(m = line.match(/^!\[([^\]]*)\]\(([^)]+)\)\s*$/)){