Skip to content

Commit

Permalink
impl custom theme color and features in homepage
Browse files Browse the repository at this point in the history
  • Loading branch information
sharpchen committed Dec 16, 2023
1 parent c8de360 commit 1c45602
Show file tree
Hide file tree
Showing 26 changed files with 1,057 additions and 280 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,6 @@ Thumbs.db

# Optional: IDE/Editor-specific files
.idea/
.vscode/
.vscode/

demo
35 changes: 19 additions & 16 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,18 +1,21 @@
{
"overrides": [
{
"files": ["*.vue","*.ts","*.mts","*.js"],
"options": {
"printWidth": 100,
"singleQuote": true,
"semi": true,
"htmlWhitespaceSensitivity": "ignore",
"tabWidth": 4,
"vueIndentScriptAndStyle": true,
"arrowParens": "avoid"
}

"overrides": [
{
"files": [
"*.vue",
"*.ts",
"*.mts",
"*.js"
],
"options": {
"singleQuote": true,
"semi": true,
"htmlWhitespaceSensitivity": "ignore",
"tabWidth": 4,
"vueIndentScriptAndStyle": true,
"arrowParens": "avoid",
"printWidth": 120
}
]
}
}
]
}
Loading

0 comments on commit 1c45602

Please sign in to comment.