Commit 285a4c5d authored by isstuev's avatar isstuev

timestamp margin fix

parent 1a404699
...@@ -15,7 +15,7 @@ const DetailsTimestamp = ({ timestamp, isLoading }: Props) => { ...@@ -15,7 +15,7 @@ const DetailsTimestamp = ({ timestamp, isLoading }: Props) => {
return ( return (
<> <>
<IconSvg name="clock" boxSize={ 5 } color="gray.500" isLoading={ isLoading }/> <IconSvg name="clock" boxSize={ 5 } color="gray.500" isLoading={ isLoading }/>
<Skeleton isLoaded={ !isLoading } ml={ 1 }> <Skeleton isLoaded={ !isLoading } ml={ 2 }>
{ dayjs(timestamp).fromNow() } { dayjs(timestamp).fromNow() }
</Skeleton> </Skeleton>
<TextSeparator/> <TextSeparator/>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment