Skip to content

Commit

Permalink
UI: Center copy icon (#196)
Browse files Browse the repository at this point in the history
  • Loading branch information
ugtthis authored Feb 20, 2025
1 parent 7d580ad commit 8f60b86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/RouteActions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ const RouteActions: VoidComponent<RouteActionsProps> = (props) => {
{currentRouteId().split('/')[1] || ''}
</span>
</div>
<Icon size="24" class={clsx('ml-2', copied() && 'text-green-300')}>{copied() ? 'check' : 'file_copy'}</Icon>
<Icon size="24" class={clsx('px-4', copied() && 'text-green-300')}>{copied() ? 'check' : 'file_copy'}</Icon>
</button>
</div>

Expand Down

0 comments on commit 8f60b86

Please sign in to comment.