Change UI font to Source Sans Pro
This commit is contained in:
parent
2f43f2e68e
commit
b800e91ccd
|
|
@ -33,6 +33,7 @@
|
||||||
"vetur.format.options.useTabs": true,
|
"vetur.format.options.useTabs": true,
|
||||||
"eslint.format.enable": true,
|
"eslint.format.enable": true,
|
||||||
"files.eol": "\n",
|
"files.eol": "\n",
|
||||||
|
"html.format.wrapLineLength": 200,
|
||||||
"vetur.validation.interpolation": false,
|
"vetur.validation.interpolation": false,
|
||||||
"vetur.format.options.tabSize": 4,
|
"vetur.format.options.tabSize": 4,
|
||||||
"vetur.experimental.templateInterpolationService": true
|
"vetur.experimental.templateInterpolationService": true
|
||||||
|
|
|
||||||
|
|
@ -9,11 +9,10 @@
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
|
||||||
<link rel="manifest" href="/site.webmanifest">
|
<link rel="manifest" href="/site.webmanifest">
|
||||||
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900">
|
||||||
<meta name="msapplication-TileColor" content="#da532c">
|
<meta name="msapplication-TileColor" content="#da532c">
|
||||||
<meta name="theme-color" content="#ffffff">
|
<meta name="theme-color" content="#ffffff">
|
||||||
<title>
|
<title>Graphite</title>
|
||||||
<%= htmlWebpackPlugin.options.title %>
|
|
||||||
</title>
|
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@ export default defineComponent({
|
||||||
html, body, #app {
|
html, body, #app {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
font-family: "Segoe UI", Arial, sans-serif;
|
font-family: "Source Sans Pro", Arial, sans-serif;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
color: #ddd;
|
color: #ddd;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue