Use system font stack (#1326)

Closes https://github.com/woodpecker-ci/woodpecker/issues/1316

Applied suggestion by @silverwind
This commit is contained in:
qwerty287
2022-10-23 04:33:39 +02:00
committed by GitHub
parent 784f92eed1
commit bdf0a59bea
2 changed files with 11 additions and 1 deletions

View File

@@ -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],