-
Notifications
You must be signed in to change notification settings - Fork 360
- feat: update google fonts to material symbols #4085
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Changes from 3 commits
1ab9158
00c7eb6
1f7c2cc
0a02071
4b0566b
7bce0d0
f18c09e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,7 +41,8 @@ export const addVuesticToVue3App = async () => { | |
let htmlSource = await readFile(htmlPath, 'utf-8') | ||
htmlSource = insertHead(htmlSource, [ | ||
`<link href="https://fonts.googleapis.com/css2?family=Source+Code+Pro&family=Source+Sans+Pro:wght@400;700&display=swap" rel="stylesheet">`, | ||
`<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">` | ||
`<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">`, | ||
`<link href="https://fonts.googleapis.com/icon?family=Material+Symbols+Outlined" rel="stylesheet">` | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We need to update IconsConfig to use material-symbols but default, instead of material icons. Right now, creating new vuestic project will install Material Symbols, but we use material-icons in IconsConfig... There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We should release both projects simultaneously then. |
||
]) | ||
await writeFile(htmlPath, htmlSource) | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -105,8 +105,7 @@ export default defineNuxtConfig({ | |
'Source+Code+Pro': { | ||
wght: [400], | ||
}, | ||
'Material+Icons': true, | ||
'Material+Icons+Outlined': true, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Did a quick check with docs, look fine |
||
'Material+Symbols+Outlined': true, | ||
}, | ||
}, | ||
|
||
|
Uh oh!
There was an error while loading. Please reload this page.