From 41428646ab288da2ca3120a2e4ee7384147c4abd Mon Sep 17 00:00:00 2001 From: thug0bin Date: Wed, 4 Mar 2026 23:48:14 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=A7=88=EB=B3=91=20=EB=B1=83=EC=A7=80?= =?UTF-8?q?=20=EC=8A=A4=ED=83=80=EC=9D=BC=20=EB=B6=84=EB=A6=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/templates/pmr.html | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/backend/templates/pmr.html b/backend/templates/pmr.html index 958a170..9480d4b 100644 --- a/backend/templates/pmr.html +++ b/backend/templates/pmr.html @@ -145,6 +145,11 @@ padding: 4px 12px; border-radius: 15px; } + .detail-header .rx-info .disease-badge { + background: #fef3c7 !important; + color: #92400e !important; + margin-left: 5px; + } /* 약품 목록 */ .medication-list { @@ -579,10 +584,10 @@ if (data.disease_info) { const d = data.disease_info; if (d.name_1) { - diseaseHtml += `🩺 ${d.name_1}`; + diseaseHtml += `🩺 ${d.name_1}`; } if (d.name_2) { - diseaseHtml += `🩺 ${d.name_2}`; + diseaseHtml += `🩺 ${d.name_2}`; } }