Skip to content

Commit

Permalink
Add margin left to the refresh variable buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
Pabl0cks committed Feb 7, 2024
1 parent 08c3619 commit 5e11bb0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export const DisplayVariable = ({
<div className="space-y-1 pb-2">
<div className="flex items-center">
<h3 className="font-medium text-sm mb-0 break-all">{abiFunction.name}</h3>
<button className="btn btn-ghost btn-xs" onClick={async () => await refetch()}>
<button className="btn btn-ghost btn-xs ml-2" onClick={async () => await refetch()}>
{isFetching ? (
<span className="loading loading-spinner loading-xs"></span>
) : (
Expand Down

0 comments on commit 5e11bb0

Please sign in to comment.