Merge pull request #1181 from Automattic/fix/site-description-block-jump

FSE: Add line height to site description block to prevent jump
This commit is contained in:
Noah Allen 2019-08-02 11:06:31 -07:00 committed by GitHub
commit 3004ef3258
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 3 deletions

View file

@ -1840,9 +1840,10 @@ ul.wp-block-archives li ul,
}
/** === Site Description Block === */
.wp-block-a8c-site-description {
.wp-block-a8c-site-description, .wp-block-a8c-site-description:focus {
text-align: center;
margin: 0;
line-height: 0.8em;
}
/** === Classic Editor === */

View file

@ -910,8 +910,13 @@ ul.wp-block-archives,
/** === Site Description Block === */
.wp-block-a8c-site-description {
text-align: center;
margin: 0;
&,&:focus {
text-align: center;
margin: 0;
// Line height rounded up from the description text-size set in style.css.
// It needs to be a bit larger to prevent text from getting cropped on top.
line-height: 0.8em;
}
}
/** === Classic Editor === */