Skip to content

Commit

Permalink
Fix post rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
youknowriad committed Nov 17, 2022
1 parent 2170f24 commit afd0bd0
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions packages/edit-site/src/components/layout/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -174,17 +174,16 @@ export default function Layout() {
<AnimatePresence>
{ isEditorPage && canvasMode === 'edit' && (
<NavigableRegion
motionProps={ {
initial: { y: -60 },
animate: { y: 0 },
exit: { y: -60 },
transition: {
type: 'tween',
duration: disableMotion
? 0
: ANIMATION_DURATION,
ease: 'easeOut',
},
as={ motion.div }
initial={ { y: -60 } }
animate={ { y: 0 } }
edit={ { y: -60 } }
transition={ {
type: 'tween',
duration: disableMotion
? 0
: ANIMATION_DURATION,
ease: 'easeOut',
} }
className="edit-site-layout__editor-header"
ariaLabel={ __( 'Editor top bar' ) }
Expand Down

0 comments on commit afd0bd0

Please sign in to comment.