feat: US-008 - Add two-column experience and skills layout in Patient Pathway

This commit is contained in:
2026-02-14 18:11:26 +00:00
parent 0e7bef0206
commit b5de609cd5
6 changed files with 640 additions and 8 deletions
+14
View File
@@ -300,6 +300,20 @@ html {
}
}
/* Pathway two-column layout — mobile-first (used in Patient Pathway) */
.pathway-columns {
display: grid;
grid-template-columns: 1fr;
gap: 16px;
}
/* Desktop: 2 columns */
@media (min-width: 768px) {
.pathway-columns {
grid-template-columns: 1fr 1fr;
}
}
/* ===== COMMAND PALETTE ANIMATIONS ===== */
@keyframes palette-overlay-in {
from { opacity: 0; }