WordPress/wp-content/themes/twentytwentyone/assets/sass/style-editor.scss
audrasjb 1765de0770 Twenty Twenty-One: Add b and strong elements to editor styles.
Sets `font-weight: 700` for these elements in the editor, in order to match the front end styles. It overrides the default admin `font-weight` of `600` for 
these HTML elements.

Props nkeller15, audrasjb, sabernhardt, pavanpatil1, iamfarhan09, poena.
Fixes #58383.



Built from https://develop.svn.wordpress.org/trunk@56172


git-svn-id: http://core.svn.wordpress.org/trunk@55684 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-07-09 15:49:23 +00:00

28 lines
539 B
SCSS

/**
* These styles should be loaded by the Block Editor only
*/
@import "01-settings/fonts";
@import "01-settings/global";
@import "02-tools/mixins";
@import "02-tools/functions";
@import "03-generic/breakpoints";
// Add relevant styles from "04-elements/misc"
b,
strong {
font-weight: 700;
}
@import "04-elements/blockquote";
@import "04-elements/media";
@import "04-elements/forms-editor";
@import "04-elements/links";
@import "05-blocks/blocks-editor";
@import "06-components/editor";
@import "07-utilities/color-palette";