Skip to content

Commit

Permalink
Fix: Ensure consistent font-weight for quote block in editor and fron…
Browse files Browse the repository at this point in the history
…tend

- Updated `font-weight` from `400` to `inherit` for `.wp-block-quote p`
- Applied changes to `editor-style-block.css` and `editor-style-block-rtl.css`
  • Loading branch information
SainathPoojary committed Dec 30, 2024
1 parent 4e1752d commit a8adb83
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -682,7 +682,7 @@ hr.wp-block-separator.is-style-dots::before {

.editor-styles-wrapper .wp-block-quote p {
color: inherit;
font-weight: 400;
font-weight: inherit;
margin: 0 0 20px 0;
letter-spacing: inherit;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -686,7 +686,7 @@ hr.wp-block-separator.is-style-dots::before {

.editor-styles-wrapper .wp-block-quote p {
color: inherit;
font-weight: 400;
font-weight: inherit;
margin: 0 0 20px 0;
letter-spacing: inherit;
}
Expand Down

0 comments on commit a8adb83

Please sign in to comment.