diff options
author | lonkaars <loek@pipeframe.xyz> | 2021-05-25 20:32:07 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2021-05-25 20:32:07 +0200 |
commit | 45a4cda8d9d5b205804216b9089918f1718b96f4 (patch) | |
tree | 13aaa81a3d8724a7c3bc926c10e267af41a309dd /components | |
parent | 4562c60cf284a97ae1fa861480b0916f5fb7c453 (diff) |
keyframe placement :tada:
Diffstat (limited to 'components')
-rw-r--r-- | components/icons.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/icons.tsx b/components/icons.tsx index ea73b26..cf60f54 100644 --- a/components/icons.tsx +++ b/components/icons.tsx @@ -121,7 +121,7 @@ export function SlideKeyframe(props: { loopEnd?: boolean; }) { return <div className={'keyframe dispinbl posrel' + (props.ghost ? ' ghost' : '')}> - {props.ghost && <SlideKeyframeOutline type={props.type} loopEnd={props.loopEnd} />} + <SlideKeyframeOutline type={props.type} loopEnd={props.loopEnd} /> <SlideKeyframeBackground type={props.type} loopEnd={props.loopEnd} /> </div>; } |