16 lines
420 B
SCSS
16 lines
420 B
SCSS
// Extra class for specificity to overwrite editor styles.
|
|
.wc-block-components-title.wc-block-components-title {
|
|
@include reset-box();
|
|
@include font-size(large);
|
|
word-break: break-word;
|
|
}
|
|
|
|
// For Twenty Twenty we need to increase specificity a bit more.
|
|
.theme-twentytwenty {
|
|
.wc-block-components-title.wc-block-components-title {
|
|
@include reset-box();
|
|
@include font-size(large);
|
|
word-break: break-word;
|
|
}
|
|
}
|