Adds a `TrackingRepoSelect` dropdown component to the SettingsModal (with co-located CSS and full test coverage), updates the settings reference docs, and includes the FN-4731 changeset for the `@runfusion/fusion` package. Fusion-Task-Id: FN-4731
24 lines
368 B
CSS
24 lines
368 B
CSS
.tracking-repo-select {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--space-sm);
|
|
}
|
|
|
|
.tracking-repo-select__custom-input {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.tracking-repo-select__hint {
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.tracking-repo-select__hint--error {
|
|
color: var(--color-error);
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.tracking-repo-select {
|
|
gap: var(--space-xs);
|
|
}
|
|
}
|