feat(FN-676): fix modal button positioning and refactor project commands

- Fix sticky bottom actions positioning in NewTaskModal with CSS improvements
- Add changeset for modal button position fix
- Refactor CLI project commands with cleaner error handling and logic
- Update project resolver tests for improved coverage and reliability
- Sync settings and task command improvements from core type changes
This commit is contained in:
gsxdsm
2026-04-01 07:16:37 -07:00
parent 81a1adb205
commit 91784d464e
2 changed files with 16 additions and 1 deletions

View File

@@ -9622,10 +9622,20 @@ html .column.drag-over * {
/* === New Task Modal === */
.new-task-modal {
height: 100%;
overflow: hidden;
}
.new-task-modal .modal-body {
padding: 20px 24px;
overflow-y: auto;
max-height: calc(80vh - 120px);
flex: 1;
min-height: 0;
}
.new-task-modal .modal-actions {
flex-shrink: 0;
}
.new-task-modal .form-group {