mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 15:11:10 +08:00
Merge pull request #5742 from storybooks/feature/toolbar-toggle-animation
CHANGE animation duration for layout && ADD animation for toolbar
This commit is contained in:
parent
158ceeb07f
commit
f0e00c44f9
@ -68,7 +68,7 @@ const Pane = styled.div(
|
||||
animate
|
||||
? {
|
||||
transition: ['width', 'height', 'top', 'left', 'background', 'opacity', 'transform']
|
||||
.map(p => `${p} 0.09s ease-out`)
|
||||
.map(p => `${p} 0.1s ease-out`)
|
||||
.join(','),
|
||||
}
|
||||
: {}
|
||||
|
@ -296,6 +296,8 @@ Array [
|
||||
bottom: 0;
|
||||
top: 40px;
|
||||
z-index: 3;
|
||||
-webkit-transition: all 0.1s linear;
|
||||
transition: all 0.1s linear;
|
||||
height: calc(100% - 40px);
|
||||
background: transparent;
|
||||
}
|
||||
@ -788,6 +790,8 @@ Array [
|
||||
bottom: 0;
|
||||
top: 40px;
|
||||
z-index: 3;
|
||||
-webkit-transition: all 0.1s linear;
|
||||
transition: all 0.1s linear;
|
||||
height: calc(100% - 40px);
|
||||
background: transparent;
|
||||
}
|
||||
|
@ -27,7 +27,8 @@ export const FrameWrap = styled.div(({ offset }) => ({
|
||||
bottom: 0,
|
||||
top: offset,
|
||||
zIndex: 3,
|
||||
height: offset ? `calc(100% - ${offset}px)` : '100%',
|
||||
transition: 'all 0.1s linear',
|
||||
height: `calc(100% - ${offset}px)`,
|
||||
background: 'transparent',
|
||||
}));
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user