This merge delivers v0.12.0, which includes a new experimental agent onboarding modal (`ExperimentalAgentOnboardingModal`) that streamlines the handoff from onboarding to the create-agent form, along with backend lifecycle tests and documentation for the experimental flag. The release bumps all work Fusion-Task-Id: FN-3024
17 lines
369 B
CSS
17 lines
369 B
CSS
.experimental-agent-onboarding-modal__textarea {
|
|
min-height: calc(var(--space-2xl) * 4);
|
|
}
|
|
|
|
.experimental-agent-onboarding-modal__summary {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--space-sm);
|
|
padding: var(--space-lg);
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.experimental-agent-onboarding-modal__textarea {
|
|
min-height: calc(var(--space-2xl) * 3);
|
|
}
|
|
}
|