Skip to content

Commit

Permalink
Remove bottom padding
Browse files Browse the repository at this point in the history
  • Loading branch information
ellatrix committed May 5, 2021
1 parent 3ebe56a commit 3f3e7c5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/edit-post/src/components/visual-editor/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,9 @@ export default function VisualEditor( { styles } ) {
className={ classnames( 'edit-post-visual-editor', {
'is-template-mode': isTemplateMode,
} ) }
animate={ isTemplateMode ? { padding: '48px' } : { padding: 0 } }
animate={
isTemplateMode ? { padding: '48px 48px 0' } : { padding: 0 }
}
ref={ blockSelectionClearerRef }
>
{ themeSupportsLayout && (
Expand Down

0 comments on commit 3f3e7c5

Please sign in to comment.