Skip to content

Commit

Permalink
Fix phrase emphasis not italicized (#850)
Browse files Browse the repository at this point in the history
* Fix phrase emphasis not italicized

* use it in base css instead:

* i tag as well

* Update main.css
  • Loading branch information
endiliey authored and yangshun committed Jul 15, 2018
1 parent defcbcc commit 03e237a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion lib/static/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 03e237a

Please sign in to comment.