aboutsummaryrefslogtreecommitdiffstats
path: root/app/containers/App/LotteryItem.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/containers/App/LotteryItem.js')
-rw-r--r--app/containers/App/LotteryItem.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/app/containers/App/LotteryItem.js b/app/containers/App/LotteryItem.js
index fa10ed7..4e59ca5 100644
--- a/app/containers/App/LotteryItem.js
+++ b/app/containers/App/LotteryItem.js
@@ -4,16 +4,16 @@ import moment from 'moment';
const blink = keyframes`
from, to {
- color: transparent;
+ opacity: 0;
}
50% {
- color: white;
+ opacity: 1;
}
`;
const Marker = styled.span`
- animation: ${blink} 1s step-end infinite;
+ animation: ${blink} 1s ease infinite;
display: none;
`;
@@ -40,7 +40,7 @@ const Item = styled.a`
`;
const Gray = styled.span`
- color: #8d8d8d;
+ /* color: #8d8d8d; */
display: contents;
`;
@@ -51,7 +51,7 @@ const LotteryItem = ({ timestamp, hash, number }: { timestamp: String, hash: Str
>
<Gray>{'Time: '}</Gray>{moment(timestamp * 1000).format('MMM Do, LTS ZZ')}<br />
<Gray>{'Number: '}</Gray>{number}<br />
- <Gray>{'TxHash: '}</Gray>{hash}<Marker>_</Marker>
+ <Gray>{'TxHash: '}</Gray>{hash}<Marker>|</Marker>
</Item>
);