Skip to content

Commit

Permalink
fix(create-vite): update templates to use better font (vitejs#11665)
Browse files Browse the repository at this point in the history
  • Loading branch information
mayank99 authored and futurGH committed Feb 26, 2023
1 parent 1cefda8 commit 6e91267
Show file tree
Hide file tree
Showing 12 changed files with 24 additions and 36 deletions.
5 changes: 2 additions & 3 deletions packages/create-vite/template-lit-ts/src/index.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
:root {
font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
font-size: 16px;
line-height: 24px;
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
line-height: 1.5;
font-weight: 400;

color-scheme: light dark;
Expand Down
5 changes: 2 additions & 3 deletions packages/create-vite/template-lit/src/index.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
:root {
font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
font-size: 16px;
line-height: 24px;
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
line-height: 1.5;
font-weight: 400;

color-scheme: light dark;
Expand Down
5 changes: 2 additions & 3 deletions packages/create-vite/template-preact-ts/src/index.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
:root {
font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
font-size: 16px;
line-height: 24px;
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
line-height: 1.5;
font-weight: 400;

color-scheme: light dark;
Expand Down
5 changes: 2 additions & 3 deletions packages/create-vite/template-preact/src/index.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
:root {
font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
font-size: 16px;
line-height: 24px;
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
line-height: 1.5;
font-weight: 400;

color-scheme: light dark;
Expand Down
5 changes: 2 additions & 3 deletions packages/create-vite/template-react-ts/src/index.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
:root {
font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
font-size: 16px;
line-height: 24px;
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
line-height: 1.5;
font-weight: 400;

color-scheme: light dark;
Expand Down
5 changes: 2 additions & 3 deletions packages/create-vite/template-react/src/index.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
:root {
font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
font-size: 16px;
line-height: 24px;
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
line-height: 1.5;
font-weight: 400;

color-scheme: light dark;
Expand Down
5 changes: 2 additions & 3 deletions packages/create-vite/template-svelte-ts/src/app.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
:root {
font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
font-size: 16px;
line-height: 24px;
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
line-height: 1.5;
font-weight: 400;

color-scheme: light dark;
Expand Down
5 changes: 2 additions & 3 deletions packages/create-vite/template-svelte/src/app.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
:root {
font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
font-size: 16px;
line-height: 24px;
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
line-height: 1.5;
font-weight: 400;

color-scheme: light dark;
Expand Down
5 changes: 2 additions & 3 deletions packages/create-vite/template-vanilla-ts/src/style.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
:root {
font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
font-size: 16px;
line-height: 24px;
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
line-height: 1.5;
font-weight: 400;

color-scheme: light dark;
Expand Down
5 changes: 2 additions & 3 deletions packages/create-vite/template-vanilla/style.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
:root {
font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
font-size: 16px;
line-height: 24px;
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
line-height: 1.5;
font-weight: 400;

color-scheme: light dark;
Expand Down
5 changes: 2 additions & 3 deletions packages/create-vite/template-vue-ts/src/style.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
:root {
font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
font-size: 16px;
line-height: 24px;
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
line-height: 1.5;
font-weight: 400;

color-scheme: light dark;
Expand Down
5 changes: 2 additions & 3 deletions packages/create-vite/template-vue/src/style.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
:root {
font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
font-size: 16px;
line-height: 24px;
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
line-height: 1.5;
font-weight: 400;

color-scheme: light dark;
Expand Down

0 comments on commit 6e91267

Please sign in to comment.