diff --git a/shyftBlockExplorerUI/src/components/table/accounts/accountRows.js b/shyftBlockExplorerUI/src/components/table/accounts/accountRows.js index 403eeaa2e5..66a88bc362 100644 --- a/shyftBlockExplorerUI/src/components/table/accounts/accountRows.js +++ b/shyftBlockExplorerUI/src/components/table/accounts/accountRows.js @@ -45,14 +45,14 @@ class AccountTable extends Component { let combinedClasses = ['responsive-table', classes.table]; return ( - - - - - - - - + + + + + + + + {table}
RankAddressBalancePercentageTxCount
RankAddressBalancePercentageTxCount
diff --git a/shyftBlockExplorerUI/src/components/table/accounts/accounts.css b/shyftBlockExplorerUI/src/components/table/accounts/accounts.css index 8aa8995a54..1a66fb5b20 100644 --- a/shyftBlockExplorerUI/src/components/table/accounts/accounts.css +++ b/shyftBlockExplorerUI/src/components/table/accounts/accounts.css @@ -1,21 +1,24 @@ .table { border-spacing: 100rem; - width: 100%; - margin-top: 50px; -} - -.tHead { - font-size: 1rem; + width: 95%; + margin: 0 auto; + background-color: white; + top: 107pt; + left: 2.5%; + position: absolute; } th { - background-color: aliceblue; - padding-right: 10px; + background-color: white; + padding: 15pt 30pt ; + color: #593c83; + font-family: 'Open Sans', sans-serif; } td { - padding-left: 5px; - font-size: .5rem; + font-size: 6pt; + background-color: white; + font-family: 'Open Sans', sans-serif; } .addressTag { diff --git a/shyftBlockExplorerUI/src/components/table/accounts/accountsTable.js b/shyftBlockExplorerUI/src/components/table/accounts/accountsTable.js index 2f708d449c..a273875d80 100644 --- a/shyftBlockExplorerUI/src/components/table/accounts/accountsTable.js +++ b/shyftBlockExplorerUI/src/components/table/accounts/accountsTable.js @@ -4,17 +4,17 @@ import { Link } from 'react-router-dom' const AccountsTable = (props) => { return ( - - - {props.Rank} - props.detailAccountHandler(props.Addr)}> + + + {props.Rank} + props.detailAccountHandler(props.Addr)}> {props.Addr} - {props.Balance} - {props.Percentage}% - {props.AccountNonce} + {props.Balance} + {props.Percentage}% + {props.AccountNonce} - + ) }; diff --git a/shyftBlockExplorerUI/src/components/table/blocks/table.css b/shyftBlockExplorerUI/src/components/table/blocks/table.css index 867ed44e55..0f58be2724 100644 --- a/shyftBlockExplorerUI/src/components/table/blocks/table.css +++ b/shyftBlockExplorerUI/src/components/table/blocks/table.css @@ -8,13 +8,6 @@ position: absolute; } -thead { - font-size: 7pt; - background-color: white; - font-family: 'Open Sans', sans-serif; - color: #593c83; -} - th { background-color: white; padding: 15pt 30pt ; diff --git a/shyftBlockExplorerUI/src/components/table/transactions/table.css b/shyftBlockExplorerUI/src/components/table/transactions/table.css index 5ee1680a15..fb59f22b45 100644 --- a/shyftBlockExplorerUI/src/components/table/transactions/table.css +++ b/shyftBlockExplorerUI/src/components/table/transactions/table.css @@ -8,12 +8,12 @@ position: absolute; } -.tHead { +/* .tHead { font-size: 7pt; background-color: white; font-family: 'Open Sans', sans-serif; color: #593c83; -} +} */ th { background-color: white; diff --git a/shyftBlockExplorerUI/src/components/table/transactions/transactionRow.js b/shyftBlockExplorerUI/src/components/table/transactions/transactionRow.js index 7c537f5cbc..48e9ad348b 100644 --- a/shyftBlockExplorerUI/src/components/table/transactions/transactionRow.js +++ b/shyftBlockExplorerUI/src/components/table/transactions/transactionRow.js @@ -44,16 +44,16 @@ class TransactionTable extends Component { return ( - - - - - - - - - - + + + + + + + + + + {table}
TxHashBlockAgeFromToValueTxFee
TxHashBlockAgeFromToValueTxFee
diff --git a/shyftBlockExplorerUI/src/components/table/transactions/transactionTable.js b/shyftBlockExplorerUI/src/components/table/transactions/transactionTable.js index 54884fc2f1..d125b308ab 100644 --- a/shyftBlockExplorerUI/src/components/table/transactions/transactionTable.js +++ b/shyftBlockExplorerUI/src/components/table/transactions/transactionTable.js @@ -12,7 +12,7 @@ const TransactionTable = (props) => { } return ( - + props.detailTransactionHandler(props.txHash)}> @@ -26,7 +26,7 @@ const TransactionTable = (props) => { {props.value} {props.cost} - + ) } diff --git a/shyftBlockExplorerUI/src/containers/App.js b/shyftBlockExplorerUI/src/containers/App.js index 9dd0a5e979..0bc5379cf7 100644 --- a/shyftBlockExplorerUI/src/containers/App.js +++ b/shyftBlockExplorerUI/src/containers/App.js @@ -11,7 +11,6 @@ import Home from '../components/home/home'; ///**TRANSACTIONS**/// import TransactionRow from '../components/table/transactions/transactionRow'; -import TransactionHeader from "../components/nav/transactionHeader/transactionHeader"; import TransactionDetailHeader from "../components/nav/transactionHeader/transactionDetailHeader"; import DetailTransactionTable from "../components/table/transactions/transactionDetailsRow"; import BlockTxs from "../components/table/transactions/blockTx"; @@ -20,13 +19,12 @@ import BlockTxs from "../components/table/transactions/blockTx"; import BlocksRow from '../components/table/blocks/blockRows'; import DetailBlockTable from '../components/table/blocks/blocksDetailsRow'; import BlockDetailHeader from "../components/nav/blockHeaders/blockDetailHeader"; -import BlockHeader from "../components/nav/blockHeaders/blockHeader"; import BlocksMinedTable from "../components/table/blocks/blocksMined"; import BlockCoinbaseHeader from "../components/nav/blockHeaders/blockCoinbaseHeader"; + ///**ACCOUNTS**/// import AccountsRow from '../components/table/accounts/accountRows'; import DetailAccountsTable from "../components/table/accounts/detailAccountsRow"; -import AccountHeader from "../components/nav/accountHeaders/accountHeader"; import AccountDetailHeader from "../components/nav/accountHeaders/accountDetailHeader"; import classes from './App.css'; @@ -101,36 +99,35 @@ class App extends Component {