Use configured bold for strong tags

This commit is contained in:
Adam Wathan 2019-03-12 17:13:02 -04:00
parent d6be4d4dfb
commit 0d25dd274d
3 changed files with 30 additions and 0 deletions

View File

@ -506,6 +506,16 @@ textarea {
color: inherit;
}
/**
* Use the configured 'bold' weight for `strong` elements
* by default, falling back to 'bolder' (as per normalize.css)
* if there is no configured 'bold' weight.
*/
strong {
font-weight: 700;
}
.container {
width: 100%;
}

View File

@ -506,6 +506,16 @@ textarea {
color: inherit;
}
/**
* Use the configured 'bold' weight for `strong` elements
* by default, falling back to 'bolder' (as per normalize.css)
* if there is no configured 'bold' weight.
*/
strong {
font-weight: 700;
}
.container {
width: 100%;
}

View File

@ -151,3 +151,13 @@ textarea {
line-height: inherit;
color: inherit;
}
/**
* Use the configured 'bold' weight for `strong` elements
* by default, falling back to 'bolder' (as per normalize.css)
* if there is no configured 'bold' weight.
*/
strong {
font-weight: theme('fontWeight.bold', bolder);
}