Skip to content

Commit e923945

Browse files
authored
New UI (#20)
* Migrate to vite * Update lock * Import Tailwind & fomart changes * Perpare UI * Support rendering markdown with math * Add CodeEditor component
1 parent 3558403 commit e923945

34 files changed

+9759
-1503
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
# production
1212
/build
13+
/dist
1314

1415
# misc
1516
.DS_Store

.vscode/extensions.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"recommendations": [
3-
"esbenp.prettier-vscode",
4-
"dbaeumer.vscode-eslint",
5-
"pkief.material-icon-theme"
6-
],
7-
}
2+
"recommendations": [
3+
"esbenp.prettier-vscode",
4+
"dbaeumer.vscode-eslint",
5+
"pkief.material-icon-theme"
6+
]
7+
}

.vscode/settings.json

+3
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,8 @@
22
"editor.formatOnSave": true,
33
"material-icon-theme.folders.associations": {
44
"src/store": "Redux-store"
5+
},
6+
"files.associations": {
7+
"*.css": "tailwindcss"
58
}
69
}

index.html

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
<html lang="en">
33
<head>
44
<meta charset="utf-8" />
5+
<link rel="stylesheet" href="./katex-dist/katex.min.css">
56
<link rel="icon" href="./favicon.ico" />
67
<meta name="viewport" content="width=device-width, initial-scale=1" />
78
<meta name="theme-color" content="#000000" />

0 commit comments

Comments
 (0)