Skip to content

Commit

Permalink
Fix: Next/prev margin
Browse files Browse the repository at this point in the history
  • Loading branch information
kristoferlund committed Jun 21, 2022
1 parent fb3dedc commit 89cb37a
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ const EventLogsTable = ({
))}
</div>
{(data.hasNextPage || data.hasPrevPage) && (
<div className="flex justify-between w-full mt-4 space-x-4">
<div>
<div className="flex justify-between w-full mt-5">
<div className="mb-5 ml-5 text-left">
{data.hasPrevPage && (
<a
className="cursor-pointer"
Expand All @@ -44,14 +44,14 @@ const EventLogsTable = ({
<FontAwesomeIcon
icon={faArrowLeft}
size="1x"
className="pl-5 mr-2"
className="mr-2"
/>
Previous
</a>
)}
</div>

<div>
<div className="mb-5 mr-5 text-right">
{data.hasNextPage && (
<a
className="cursor-pointer"
Expand All @@ -62,7 +62,7 @@ const EventLogsTable = ({
<FontAwesomeIcon
icon={faArrowRight}
size="1x"
className="pr-5 ml-2"
className="ml-2"
/>
</a>
)}
Expand Down

0 comments on commit 89cb37a

Please sign in to comment.