mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-08 14:47:12 +02:00
Fix phrase emphasis not italicized (#850)
* Fix phrase emphasis not italicized * use it in base css instead: * i tag as well * Update main.css
This commit is contained in:
parent
defcbcc8ee
commit
03e237abda
1 changed files with 7 additions and 1 deletions
|
@ -111,10 +111,16 @@ body {
|
|||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
strong {
|
||||
strong,
|
||||
b {
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
em,
|
||||
i {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
[type='checkbox'] {
|
||||
box-sizing: border-box;
|
||||
padding: 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue