diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e18983..ba00874 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ incompatibles. Chaque ligne renvoie à un commit dédié (un artefact = un commi ## [Unreleased] +## [0.36.2] — 2026-06-23 — fix hauteur layout chat (sidebar + barre de saisie) +### Fixed +- Shell en **`h-dvh`** (hauteur définie) au lieu de `min-h-dvh` : `h-full` des + enfants résout enfin → la barre de saisie est **pinned en bas de page**, la + **sidebar conversations** descend jusqu'en bas. Header `shrink-0` + root + `overflow-hidden`. + ## [0.36.1] — 2026-06-23 — fix DELETE conversation (body vide) ### Fixed - Client web `req()` : `content-type: application/json` n'est plus envoyé sur diff --git a/web/src/App.tsx b/web/src/App.tsx index 624cdd9..27cdd59 100644 --- a/web/src/App.tsx +++ b/web/src/App.tsx @@ -13,8 +13,8 @@ function Shell() { `flex items-center gap-1.5 px-3 py-2 rounded-md text-sm ${isActive ? "bg-surface-2 text-accent" : "text-muted hover:text-fg"}`; return ( -
-
+
+
CHLOVA