Skip to content
This repository was archived by the owner on May 12, 2021. It is now read-only.

Commit 3997584

Browse files
refactor: consistently target elements for font selection
1 parent 8b5c0aa commit 3997584

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/main-window.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ module.exports = function (config) {
150150
h('style', {
151151
innerHTML: computed(api.settings.obs.get('patchwork.fontFamily'), family => {
152152
if (family) {
153-
return 'body, button, input, select, textarea { font-family: ' + family + ';}'
153+
return 'body, input, select { font-family: ' + family + ';}'
154154
}
155155
})
156156
})

styles/base/base.mcss

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ a {
4545
* {
4646
box-sizing: border-box
4747
}
48-
html, select, input {
48+
html, input, select {
4949
font-family: system-ui, sans-serif
5050
}
5151
::-webkit-file-upload-button {

0 commit comments

Comments
 (0)