-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(token): add tokens table for confirmations
- Loading branch information
Showing
34 changed files
with
474 additions
and
546 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
body { | ||
font-family: '-apple-system', 'BlinkMacSystemFont', 'Helvetica', 'Arial', 'sans-serif', 'apple color emoji'; | ||
margin: 0; | ||
padding: 0; | ||
background-color: #252529; | ||
color: #e3e3e3; | ||
text-align: center; | ||
} | ||
|
||
.header { | ||
background-color: #1d1e25; | ||
padding: 20px; | ||
} | ||
|
||
.header h1 { | ||
margin: 0; | ||
font-size: 30px; | ||
} | ||
|
||
.activation { | ||
padding: 10px 100px; | ||
} | ||
|
||
.activation p { | ||
margin: 0; | ||
font-size: 20px; | ||
margin-top: 10px; | ||
margin-bottom: 30px; | ||
} | ||
|
||
.help { | ||
padding: 10px 200px; | ||
} | ||
|
||
.help p { | ||
margin: 0; | ||
font-size: 16px; | ||
margin-top: 10px; | ||
margin-bottom: 30px; | ||
} | ||
|
||
a { | ||
color: #ffff92; | ||
} | ||
|
||
a.button { | ||
padding: 10px 24px; | ||
border: 1px; | ||
font-size: 20px; | ||
border-radius: 3px; | ||
color: #e3e3e3; | ||
font-weight: 500; | ||
background-color: #715bf6; | ||
text-decoration: none; | ||
} | ||
|
||
.minerva-img { | ||
max-width: 200px; | ||
margin-top: 20px; | ||
} |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
|
@@ -120,7 +120,7 @@ export default { | |
*/ | ||
|
||
helmet: { | ||
enabled: true, | ||
enabled: false, | ||
global: true | ||
}, | ||
|
||
|
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
Oops, something went wrong.