Skip to content

Commit

Permalink
Do not display hover effect when thumbnail is loading
Browse files Browse the repository at this point in the history
  • Loading branch information
wojtekn committed Jul 16, 2024
1 parent ba3af50 commit 63f31db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/content-tab-overview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ export function ContentTabOverview( { selectedSite }: ContentTabOverviewProps )
'w-full min-h-40 max-h-64 rounded-sm border border-a8c-gray-5 bg-a8c-gray-0 mb-2 flex justify-center',
loading && `h-64 ${ skeletonBg }`,
isThumbnailError && 'border-none',
siteRunning && 'hover:border-a8c-blueberry duration-300'
! loading && siteRunning && 'hover:border-a8c-blueberry duration-300'
) }
>
{ isThumbnailError && ! loading && (
Expand Down

0 comments on commit 63f31db

Please sign in to comment.