Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"presets": [
"react"
]
}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules
dist
366 changes: 366 additions & 0 deletions docs/82f60bd0b94a1ed68b1e6e309ce2e8c3.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/8e3c7f5520f5ae906c6cf6d7f3ddcd19.eot
Binary file not shown.
1,518 changes: 1,518 additions & 0 deletions docs/962a1bf31c081691065fe333d9fa8105.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1,008 changes: 1,008 additions & 0 deletions docs/a1a749e89f578a49306ec2b055c073da.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/b87b9ba532ace76ae9f6edfe9f72ded2.ttf
Binary file not shown.
10,456 changes: 10,456 additions & 0 deletions docs/bundle.js

Large diffs are not rendered by default.

12 changes: 12 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!doctype html>
<html lang="us">
<head>
<meta charset="utf-8">
<title>Gav's Substrate UI</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="app"></div>
<script src="bundle.js"></script>
</body>
</html>
38 changes: 38 additions & 0 deletions docs/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
.validator-balances {
flex-direction: row;
flex-wrap: wrap;
justify-content: space-evenly;
align-items: stretch;
align-content: flex-start;
display: flex;
}

.validator-balance {
margin: 6px;
padding: 12px;
width: 150px;
background: #fcfcfc;
border-radius: 8px;
}

.validator {
float: left;
}

.AccountId {
clear: both;
font-family: 'Courier New', Courier, monospace;
}

.paren {
font-size: small;
color: #666;
}

.value {
font-weight: bold;
}

.ui.basic.label {
background: none #FFFFFF !important;
}
Loading