feat: add prepared authoring assistant pane

This commit is contained in:
lda
2026-07-12 06:21:33 +07:00 Verified
parent c5f9bed26d
commit bfad5d33b1
4 changed files with 152 additions and 0 deletions
+23
View File
@@ -509,3 +509,26 @@ tbody tr:nth-child(10) { animation-delay: 270ms; }
display: block;
color: var(--color-slate);
}
@custom-variant data-open (&:where([data-state="open"], [data-open]:not([data-open="false"])));
@custom-variant data-closed (&:where([data-state="closed"], [data-closed]:not([data-closed="false"])));
@theme inline {
@keyframes collapsible-down {
from {
height: 0;
}
to {
height: var(--radix-collapsible-content-height, var(--collapsible-panel-height, auto));
}
}
@keyframes collapsible-up {
from {
height: var(--radix-collapsible-content-height, var(--collapsible-panel-height, auto));
}
to {
height: 0;
}
}
}