fix(FN-1985): expand agent import skills list on mobile

- Add a mobile max-height rule for .agent-import-skill-list using dynamic viewport units.
- Allow the skills picker to fill available screen space without overflowing the agent import modal.
This commit is contained in:
Fusion
2026-04-17 16:45:07 -07:00
committed by gsxdsm
parent 7b38fa623d
commit 0750e69f63

View File

@@ -31998,6 +31998,10 @@ html .column.drag-over * {
.agent-import-browse-list {
max-height: calc(100dvh - 260px);
}
.agent-import-skill-list {
max-height: calc(100dvh - 380px);
}
}
@media (max-width: 480px) {