-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(dashboard): Add Terminal and Wallet
- Loading branch information
1 parent
4a4bafd
commit e22fccb
Showing
20 changed files
with
320 additions
and
14 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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 |
---|---|---|
|
@@ -49,6 +49,7 @@ | |
z-index: 1; | ||
|
||
img { | ||
border-radius: 10px; | ||
width: 100%; | ||
max-height: 100%; | ||
} | ||
|
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,13 @@ | ||
import * as React from 'react'; | ||
import AppTerminal from '../../organims/AppTerminal'; | ||
|
||
function AppCanvas() { | ||
return ( | ||
<> | ||
<AppTerminal /> | ||
</> | ||
); | ||
} | ||
|
||
|
||
export default AppCanvas; |
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 @@ | ||
export { default } from './AppCanvas'; |
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 |
---|---|---|
@@ -0,0 +1,38 @@ | ||
import * as React from 'react'; | ||
import DialogTitle from '@material-ui/core/DialogTitle'; | ||
import Dialog from '@material-ui/core/Dialog'; | ||
import Button from '@material-ui/core/Button'; | ||
import DialogContent from '@material-ui/core/DialogContent'; | ||
import DialogContentText from '@material-ui/core/DialogContentText'; | ||
import DialogActions from '@material-ui/core/DialogActions'; | ||
|
||
interface Props { | ||
|
||
} | ||
|
||
function Wallet(props: Props) { | ||
return ( | ||
<> | ||
<Dialog open={false}> | ||
<DialogTitle> | ||
Requesting to sign message: | ||
</DialogTitle> | ||
<DialogContent> | ||
<DialogContentText> | ||
Message | ||
</DialogContentText> | ||
</DialogContent> | ||
<DialogActions> | ||
<Button color="secondary"> | ||
Cancel | ||
</Button> | ||
<Button color="primary" autoFocus> | ||
Sign | ||
</Button> | ||
</DialogActions> | ||
</Dialog> | ||
</> | ||
); | ||
} | ||
|
||
export default Wallet; |
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 @@ | ||
export { default } from './Wallet'; |
8 changes: 8 additions & 0 deletions
8
src/js/components/organims/AppCanvasHolder/AppCanvasHolder.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,8 @@ | ||
.appCanvasHolder { | ||
position: absolute; | ||
top:0; | ||
width: 100%; | ||
height: 100%; | ||
background: #252525; | ||
z-index: 2; | ||
} |
Oops, something went wrong.