diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 4ede942..6fdfd1a 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -2130,17 +2130,19 @@ function AppContent() {
- - {selectedMed.blisters.length > 0 && ( - - )} - + {selectedMed.blisters.length > 0 && ( + + )} +
diff --git a/frontend/src/styles.css b/frontend/src/styles.css index a6e2fbd..c1aa14a 100644 --- a/frontend/src/styles.css +++ b/frontend/src/styles.css @@ -2248,12 +2248,23 @@ textarea { .med-detail-footer { padding: 1rem 2rem 1.5rem; display: flex; - justify-content: center; + justify-content: space-between; + align-items: center; border-top: 1px solid var(--border-primary); background: var(--bg-primary); border-radius: 0 0 12px 12px; } +.med-detail-footer .footer-actions { + display: flex; + gap: 0.5rem; +} + +.med-detail-footer button.icon-only { + padding: 0.5rem 0.75rem; + min-width: auto; +} + /* Clickable avatar wrapper */ .med-detail-avatar-wrapper { position: relative;