chore: auto-commit before merge (loop primary)

This commit is contained in:
2026-02-18 00:42:07 +00:00
parent 62c0d2ea19
commit 134e41f4f9
19 changed files with 925 additions and 349 deletions
+2 -42
View File
@@ -86,7 +86,7 @@ export function LastConsultationCard({ highlightedRoleId, focusRelatedIds }: Las
display: 'flex',
flexWrap: 'wrap',
gap: '20px',
marginBottom: '1=px',
marginBottom: '10px',
paddingBottom: '14px',
borderBottom: '1px solid var(--border-light)',
cursor: 'pointer',
@@ -126,52 +126,12 @@ export function LastConsultationCard({ highlightedRoleId, focusRelatedIds }: Las
fontSize: '15px',
fontWeight: 600,
color: consultation.orgColor ?? 'var(--accent)',
marginBottom: '12px',
marginBottom: '4px',
}}
>
{consultation.role}
</div>
<ul
style={{
listStyle: 'none',
padding: 0,
margin: 0,
display: 'flex',
flexDirection: 'column',
gap: '7px',
marginBottom: '0px',
}}
>
{consultation.examination.map((bullet, index) => (
<li
key={index}
style={{
fontSize: '14px',
color: 'var(--text-primary)',
paddingLeft: '16px',
lineHeight: '1.5',
position: 'relative',
}}
>
<span
aria-hidden="true"
style={{
position: 'absolute',
left: '0',
top: '8px',
width: '5px',
height: '5px',
borderRadius: '50%',
backgroundColor: consultation.orgColor ?? 'var(--accent)',
opacity: 0.5,
}}
/>
{bullet}
</li>
))}
</ul>
<button
onClick={handleOpenPanel}
style={{