-
-
Notifications
You must be signed in to change notification settings - Fork 82
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix default fonts for japanese #600
Conversation
src/renderer/App.vue
Outdated
/* | ||
These selectors are defined in user agent stylesheet. So I override. | ||
*/ | ||
input, textarea, select, button { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[stylelint]
Expected newline after "," (selector-list-comma-newline-after)
src/renderer/App.vue
Outdated
@@ -42,7 +42,16 @@ export default { | |||
</script> | |||
|
|||
<style lang="scss"> | |||
body { font-family: 'Noto Sans', sans-serif; } | |||
body { | |||
font-family: 'Noto Sans','Noto Sans CJK JP', 'Takaoゴシック', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[stylelint]
Expected single space after "," in a single-line list (value-list-comma-space-after)
src/renderer/App.vue
Outdated
These selectors are defined in user agent stylesheet. So I override. | ||
*/ | ||
input, textarea, select, button { | ||
font-family: 'Noto Sans','Noto Sans CJK JP', 'Takaoゴシック', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[stylelint]
Expected single space after "," in a single-line list (value-list-comma-space-after)
src/renderer/App.vue
Outdated
textarea, | ||
select, | ||
button { | ||
font-family: 'Noto Sans','Noto Sans CJK JP', 'Takaoゴシック', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[stylelint]
Expected single space after "," in a single-line list (value-list-comma-space-after)
No description provided.