mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
Use configured bold for strong tags
This commit is contained in:
parent
d6be4d4dfb
commit
0d25dd274d
@ -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%;
|
||||
}
|
||||
|
||||
@ -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%;
|
||||
}
|
||||
|
||||
@ -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);
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user