Skip to content

Commit

Permalink
WordPress6.5からブロックエディタータイトル上の余白が大きくなるのを修正
Browse files Browse the repository at this point in the history
  • Loading branch information
yhira committed Mar 13, 2024
1 parent c17998e commit 8884371
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
4 changes: 4 additions & 0 deletions css/gutenberg-editor.css
Expand Up @@ -6005,4 +6005,8 @@ div.editor-styles-wrapper .edit-post-visual-editor__post-title-wrapper {

.components-button [class*=inline-button-] {
padding: 4px 8px !important;
}

.editor-editor-canvas__post-title-wrapper {
margin-top: 0 !important;
}
5 changes: 5 additions & 0 deletions scss/gutenberg-editor.scss
Expand Up @@ -1451,4 +1451,9 @@ div.editor-styles-wrapper .edit-post-visual-editor__post-title-wrapper {
.components-button [class*="inline-button-"]{
// margin: 2px 0 !important;
padding: 4px 8px !important;
}

//WordPress6.5からブロックエディタータイトル上の余白が大きくなるのを修正
.editor-editor-canvas__post-title-wrapper{
margin-top: 0 !important;
}

0 comments on commit 8884371

Please sign in to comment.