Skip to content

Commit

Permalink
Fix default fonts for japanese
Browse files Browse the repository at this point in the history
  • Loading branch information
h3poteto committed Sep 10, 2018
1 parent 3747c5d commit d7bb79f
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion src/renderer/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,19 @@ 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;
}
/*
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;
}
html, body, #app {
--theme-background-color: #ffffff;
Expand Down

0 comments on commit d7bb79f

Please sign in to comment.