Skip to content

Commit

Permalink
feat: support setting favorite apps (#64)
Browse files Browse the repository at this point in the history
* feat: init setting mode layout

* feat: support setting favorite apps

* fix: icon font vertical style
  • Loading branch information
Heroor committed Apr 23, 2024
1 parent 4c00092 commit 382c02e
Show file tree
Hide file tree
Showing 34 changed files with 845 additions and 535 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
"dependencies": {
"axios": "^1.1.3",
"react": "^18.0.0",
"react-dom": "^18.0.0"
"react-dom": "^18.0.0",
"react-svg": "^16.1.34"
},
"devDependencies": {
"@types/node": "^18.11.9",
Expand Down
762 changes: 333 additions & 429 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

Binary file added src/assets/fonts/DINAlternate.woff
Binary file not shown.
2 changes: 0 additions & 2 deletions src/assets/fonts/iconfont.js

This file was deleted.

36 changes: 36 additions & 0 deletions src/assets/fonts/iconfont/iconfont.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
@font-face {
font-family: 'iconfont'; /* Project id 4517691 */
src: url('iconfont.woff?t=1713781044658') format('woff');
}

.iconfont {
font-family: 'iconfont' !important;
font-size: 16px;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

.icon-hide:before {
content: '\e6d5';
}

.icon-show:before {
content: '\e6d6';
}

.icon-edit:before {
content: '\e6d4';
}

.icon-favorite-active:before {
content: '\e6d2';
}

.icon-favorite:before {
content: '\e6d3';
}

.icon-add:before {
content: '\e6d9';
}
Binary file added src/assets/fonts/iconfont/iconfont.woff
Binary file not shown.
10 changes: 1 addition & 9 deletions src/assets/images/github.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/assets/images/icon-add.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions src/assets/images/icon-category.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/assets/images/icon-clear.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/assets/images/icon-edit.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/assets/images/icon-favorite-active.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/assets/images/icon-favorite.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 382c02e

Please sign in to comment.