From 4a38f4c24c0ada807ad57ea2de206039e5ec9f06 Mon Sep 17 00:00:00 2001 From: Etienne Delvarre Date: Fri, 29 May 2026 17:49:35 +0200 Subject: [PATCH] =?UTF-8?q?Fix=20l=C3=A9gende=20Binder=20+=20persistance?= =?UTF-8?q?=20vue=20active=20au=20refresh?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Binder en flex column pour que la légende apparaisse - Vue active sauvegardée dans localStorage, restaurée au chargement Co-Authored-By: Claude Opus 4.6 --- public/index.html | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/public/index.html b/public/index.html index eb27b1b..9ec2d41 100644 --- a/public/index.html +++ b/public/index.html @@ -342,7 +342,7 @@ window.dispatchEvent(new Event('tiptap-loaded')); /* ── Vue Rédaction ── */ .redaction-layout { display: flex; height: calc(100vh - 60px); } - .binder { width: 260px; flex-shrink: 0; background: var(--bg-alt); border-right: 1px solid var(--border); overflow-y: auto; padding: 16px 0; } + .binder { width: 260px; flex-shrink: 0; background: var(--bg-alt); border-right: 1px solid var(--border); overflow-y: auto; padding: 16px 0; display: flex; flex-direction: column; } .binder-acte { padding: 0 12px; margin-bottom: 4px; } .binder-acte-title { font-family: 'Playfair Display', serif; font-size: 13px; font-weight: 700; color: var(--text-hint); text-transform: uppercase; letter-spacing: 0.5px; padding: 10px 12px 6px; cursor: pointer; user-select: none; } .binder-acte-title:hover { color: var(--text); } @@ -424,7 +424,7 @@ window.dispatchEvent(new Event('tiptap-loaded'));