Animate sidebar transition

This commit is contained in:
Gregory Schier
2023-03-25 21:31:52 -07:00
parent 9abdc45e93
commit bf44ea7864
5 changed files with 80 additions and 14 deletions

View File

@@ -64,7 +64,15 @@ export default function Workspace() {
);
return (
<div className="grid w-full h-full" style={styles}>
<div
className={classnames(
'grid w-full h-full',
// Animate sidebar width changes but only when not resizing
// because it's too slow to animate on mouse move
!isResizing && 'transition-all',
)}
style={styles}
>
<div
data-tauri-drag-region
className="h-md px-3 w-full pl-20 bg-gray-50 border-b border-b-highlight text-gray-900 pt-[1px]"