mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-09 07:07:25 +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;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
strong {
|
strong,
|
||||||
|
b {
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
em,
|
||||||
|
i {
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
[type='checkbox'] {
|
[type='checkbox'] {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue