mirror of
https://github.com/NeuralNomadsAI/CodeNomad.git
synced 2026-08-26 16:52:16 +00:00
Fix long plan item layout
This commit is contained in:
parent
c8161669ac
commit
78592f229e
1 changed files with 22 additions and 1 deletions
|
|
@ -20,6 +20,7 @@
|
|||
border-radius: 0;
|
||||
padding: 10px 12px;
|
||||
background-color: var(--surface-secondary);
|
||||
min-height: 42px;
|
||||
}
|
||||
|
||||
.tool-call-todo-item-completed {
|
||||
|
|
@ -82,9 +83,29 @@
|
|||
}
|
||||
|
||||
.tool-call-todo-heading {
|
||||
@apply flex items-start justify-between gap-3;
|
||||
@apply flex items-start gap-3;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.tool-call-todo-status {
|
||||
font-size: 10px;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.08em;
|
||||
border-radius: 9999px;
|
||||
padding: 2px 8px;
|
||||
background-color: var(--surface-hover);
|
||||
color: var(--text-muted);
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.tool-call-todo-text {
|
||||
font-size: var(--font-size-sm);
|
||||
line-height: var(--line-height-tight);
|
||||
color: var(--text-primary);
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
|
||||
.tool-call-todo-status {
|
||||
font-size: 10px;
|
||||
text-transform: uppercase;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue