Files
fusion/packages/dashboard/app/components/LlamaCppProviderCard.css
Fusion 483916472f feat(FN-3431): align llama.cpp compact layout and merge recovery coverage
- Adjust llama.cpp provider card markup and CSS to keep compact spacing aligned with list view and workflow styling updates
- Add regression tests for compact llama.cpp card layout behavior in dashboard component tests
- Expand merge error recovery tests in the engine to validate deduped auto-merge retry handling and related project-engine flow changes
- Update architecture/task management docs and include changeset metadata for auto-merge recovery dedup work

Fusion-Task-Id: FN-3431
2026-05-05 01:46:58 -07:00

24 lines
394 B
CSS

.llama-cpp-provider-card--full {
display: flex;
flex-direction: column;
gap: var(--space-sm);
}
.llama-cpp-provider-card--compact .auth-provider-cli-actions {
margin-left: auto;
}
.llama-cpp-status {
color: var(--text-muted);
}
.llama-cpp-status--ok {
color: var(--color-success);
}
@media (max-width: 768px) {
.llama-cpp-provider-card--full {
gap: var(--space-xs);
}
}