mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-19 03:10:48 +00:00
add todo items
This commit is contained in:
parent
1f6879de30
commit
9e7aa2ba57
2 changed files with 9 additions and 3 deletions
|
|
@ -21,9 +21,10 @@ export const DataTable: FC<Props> = ({
|
|||
}) => {
|
||||
return (
|
||||
<TableContainer
|
||||
// TODO: Work on firefox implementation of scrollbar styles
|
||||
// Note: This wont work on safari, we are ok with this.
|
||||
css={{
|
||||
"&::-webkit-scrollbar": {
|
||||
background: "#d7f5ef",
|
||||
borderTop: '2px solid #11866f',
|
||||
height: 18
|
||||
},
|
||||
|
|
@ -68,14 +69,19 @@ export const DataTable: FC<Props> = ({
|
|||
return (
|
||||
<Tr
|
||||
key={idx}
|
||||
// TODO: Full width for hover
|
||||
// TODO: Add fade in animation on hover
|
||||
// TODO: Get new background color from nuno for hover
|
||||
_hover={{background: 'green.50'}}
|
||||
>
|
||||
{
|
||||
columnHeaders.map((columnHeader, idx) => {
|
||||
// TODO: Make the font size smaller (refer to design system)
|
||||
return (
|
||||
<Td
|
||||
key={idx}
|
||||
px={0}
|
||||
pr={2}
|
||||
pr={8}
|
||||
>
|
||||
{item[columnHeader.toLowerCase()]}
|
||||
</Td>
|
||||
|
|
|
|||
Loading…
Reference in a new issue