mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-22 09:51:01 +00:00
Use system font stack (#1326)
Closes https://github.com/woodpecker-ci/woodpecker/issues/1316 Applied suggestion by @silverwind
This commit is contained in:
parent
784f92eed1
commit
bdf0a59bea
2 changed files with 11 additions and 1 deletions
|
@ -54,7 +54,6 @@ export default defineComponent({
|
|||
|
||||
<style scoped>
|
||||
.app {
|
||||
font-family: Avenir, Helvetica, Arial, sans-serif;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
|
|
@ -22,6 +22,17 @@ export default defineConfig({
|
|||
},
|
||||
stroke: (theme) => theme('colors'),
|
||||
fill: (theme) => theme('colors'),
|
||||
fontFamily: [
|
||||
'system-ui',
|
||||
'-apple-system',
|
||||
'Segoe UI',
|
||||
'Roboto',
|
||||
'Helvetica Neue',
|
||||
'Noto Sans',
|
||||
'Liberation Sans',
|
||||
'Arial',
|
||||
'sans-serif',
|
||||
],
|
||||
},
|
||||
},
|
||||
plugins: [typography],
|
||||
|
|
Loading…
Reference in a new issue