-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update: 1. new font for log. 2. loss display update
Signed-off-by: ArvinHuang <[email protected]>
- Loading branch information
Showing
7 changed files
with
29 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,7 @@ | |
|
||
@import './index.scss'; | ||
@import './scroll.scss'; | ||
@import './font/font.scss'; | ||
|
||
* { | ||
margin: 0; | ||
|
4 changes: 4 additions & 0 deletions
4
resources-front-end/packages/fate-board/src/style/font/font.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
@font-face { | ||
font-family: 'lucon'; | ||
src: url(~@/style/font/lucon_0.ttf) format('truetype') | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 10 additions & 10 deletions
20
resources-front-end/packages/fate-ui-component/lib/components/Selection/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
import './Selection.scss'; | ||
import FSelection from './Selection.vue'; | ||
import FSelectionChart from './SelectionChart.vue'; | ||
|
||
const SelectionInstall = (app: any) => { | ||
app.component('FSelection', FSelection) | ||
app.component('FSelectionChart', FSelectionChart) | ||
} | ||
|
||
export default SelectionInstall | ||
import './Selection.scss'; | ||
import FSelection from './Selection.vue'; | ||
import FSelectionChart from './SelectionChart.vue'; | ||
|
||
const SelectionInstall = (app: any) => { | ||
app.component('FSelection', FSelection) | ||
app.component('FSelectionChart', FSelectionChart) | ||
} | ||
|
||
export default SelectionInstall |