Skip to content

Commit 4415745

Browse files
authored
Fix tooltip spacing on instance create (#2770)
fix tooltip spacing on instance create
1 parent 5a90b43 commit 4415745

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

app/forms/instance-create.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -730,9 +730,9 @@ const AdvancedAccordion = ({
730730
</div>
731731

732732
<div className="flex flex-1 flex-col gap-4">
733-
<h2 className="text-sans-md">
733+
<h2 className="flex items-center text-sans-md">
734734
Ephemeral IP{' '}
735-
<TipIcon>
735+
<TipIcon className="ml-1.5">
736736
Ephemeral IPs are allocated when the instance is created and deallocated when
737737
it is deleted
738738
</TipIcon>
@@ -775,9 +775,9 @@ const AdvancedAccordion = ({
775775
</div>
776776

777777
<div className="flex flex-1 flex-col gap-4">
778-
<h2 className="text-sans-md">
778+
<h2 className="flex items-center text-sans-md">
779779
Floating IPs{' '}
780-
<TipIcon>
780+
<TipIcon className="ml-1.5">
781781
Floating IPs exist independently of instances and can be attached to and
782782
detached from them as needed.
783783
</TipIcon>

0 commit comments

Comments
 (0)