fix(core): make sidebar switch transition smooth (#6085)

This commit is contained in:
Peng Xiao
2024-03-12 14:56:45 +00:00
parent fb3a0e7b8f
commit e333b4d348
4 changed files with 39 additions and 10 deletions
@@ -1,18 +1,23 @@
import { style } from '@vanilla-extract/css';
export const sidebarSwitch = style({
opacity: 0,
display: 'none !important',
display: 'inline-flex',
overflow: 'hidden',
pointerEvents: 'none',
transition: 'all .3s ease-in-out',
transition: 'max-width 0.2s ease-in-out, margin 0.3s ease-in-out',
selectors: {
'&[data-show=true]': {
maxWidth: '32px',
opacity: 1,
display: 'inline-flex !important',
width: '32px',
flexShrink: 0,
fontSize: '24px',
pointerEvents: 'auto',
},
'&[data-show=false]': {
maxWidth: 0,
margin: '0 !important',
},
},
});
@@ -8,10 +8,10 @@ import { appSidebarOpenAtom } from '../index.jotai';
import * as styles from './sidebar-switch.css';
export const SidebarSwitch = ({
show = true,
show,
className,
}: {
show?: boolean;
show: boolean;
className?: string;
}) => {
const [open, setOpen] = useAtom(appSidebarOpenAtom);