Skip to content

Commit 0a2e00d

Browse files
committed
Fix Block timestamp spacing on mobile
1 parent 71326a5 commit 0a2e00d

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/components/content/home-page/blocks/block.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export default function Block(props: {
3535
<div className='flex'>
3636
<CubeIcon className='w-10 h-10 md:w-8 md:h-8' />
3737
<div className='flex md:flex-col ml-2 pt-1 md:pt-0 md:w-[8rem] px-2 md:px-4'>
38-
<span className='leading-5'>
38+
<span className='leading-5 mr-2 md:mr-0'>
3939
<props.latestBlockData.Render
4040
value={(className) => <Link href={`/${props.network}/block?number=${blockNumber}`}
4141
className={`${className} hover:text-(--hover-fg-color)`}>

src/lib/data-state.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { Dispatch, ReactNode, SetStateAction, useCallback, useEffect, useMemo, useRef, useState } from 'react';
2-
import ErrorIndicator from '@/components/common/indicators/error-indicator';
32
import LoadingPulse from '@/components/common/indicators/loading-pulse';
43
import LoadingIndicator from '@/components/common/indicators/loading-indicator';
54
import ErrorWithRefetch from '@/components/common/indicators/error-with-refetch';

0 commit comments

Comments
 (0)