Bundled Themes: Twenty Twenty Author Bio/Post Meta Width in Cover Template in Mobile.

Fixes a bug where the author bio and post meta have no left or right padding in smaller viewports.

Props JarretC.
Fixes #49254.

git-svn-id: https://develop.svn.wordpress.org/trunk@47241 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ian Belanger 2020-02-10 18:23:29 +00:00
parent 437ac63d76
commit d56903d331
2 changed files with 19 additions and 1 deletions

View File

@ -809,7 +809,7 @@ input:-ms-input-placeholder {
}
input::-moz-placeholder {
line-height: normal;
line-height: revert; /* Reset to the value from the user-agent stylesheet. */
}
input[type="search"]::-webkit-search-decoration,
@ -4522,6 +4522,15 @@ a.to-the-top > * {
margin-top: -1.8rem;
}
/* Template -------------------------------- */
/* TEMPLATE: COVER */
.template-cover .post-inner .post-meta-wrapper,
.template-cover .post-inner .author-bio {
width: calc( 100% - 4rem );
}
}
@media ( min-width: 600px ) {

View File

@ -4556,6 +4556,15 @@ a.to-the-top > * {
margin-top: -1.8rem;
}
/* Template -------------------------------- */
/* TEMPLATE: COVER */
.template-cover .post-inner .post-meta-wrapper,
.template-cover .post-inner .author-bio {
width: calc( 100% - 4rem );
}
}
@media ( min-width: 600px ) {