Skip to content

Commit

Permalink
Bundled Themes: Twenty Nineteen decrease the font size for widget tit…
Browse files Browse the repository at this point in the history
…les.

Update styles to decrease the font size for widget titles.

This commit brings the changes from [47586] to the 5.4 branch.

Props kjellr, mukesh27.
Fixes #45865.


git-svn-id: https://develop.svn.wordpress.org/branches/5.4@47831 602fd350-edb4-49c9-b593-d223f7449a82
  • Loading branch information
whyisjake committed May 20, 2020
1 parent 57aff4d commit 5d8ae1d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
.widget {
margin: 0 0 #{$size__spacing-unit};

.widget-title {
font-size: $font__size-lg;
}

/* Make sure select elements fit in widgets. */
select {
max-width: 100%;
Expand Down
4 changes: 4 additions & 0 deletions src/wp-content/themes/twentynineteen/style-rtl.css
Original file line number Diff line number Diff line change
Expand Up @@ -5109,6 +5109,10 @@ body.page .main-navigation {
/* Make sure select elements fit in widgets. */
}

.widget .widget-title {
font-size: 1.6875em;
}

.widget select {
max-width: 100%;
}
Expand Down
4 changes: 4 additions & 0 deletions src/wp-content/themes/twentynineteen/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -5115,6 +5115,10 @@ body.page .main-navigation {
/* Make sure select elements fit in widgets. */
}

.widget .widget-title {
font-size: 1.6875em;
}

.widget select {
max-width: 100%;
}
Expand Down

0 comments on commit 5d8ae1d

Please sign in to comment.