0
0
Fork 0

Fix font-weight of <strong> element for CJK fonts (#5914)

* Fix font-weight for CJK fonts

* Use `font-weight: 700;` for mobile support

* Fix indentation

* Remove trailing whitespace

* Remove trailing whitespace
This commit is contained in:
SerCom_KC 2017-12-07 23:01:52 +08:00 committed by Eugen Rochko
parent 9a6fc03332
commit a1fc626e57
9 changed files with 129 additions and 0 deletions

View file

@ -12,6 +12,12 @@
strong,
a {
font-weight: 500;
@each $lang in $cjk-langs {
&:lang(#{$lang}) {
font-weight: 700;
}
}
}
a {
@ -46,6 +52,12 @@
strong,
a {
font-weight: 500;
@each $lang in $cjk-langs {
&:lang(#{$lang}) {
font-weight: 700;
}
}
}
a {