feat: add prepared authoring assistant pane
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user