fix(app): center checkbox indicator in provider selection (#10267)

This commit is contained in:
Rahul A Mistry
2026-01-23 21:53:24 +05:30
committed by GitHub
parent 4f1bdf1c59
commit 8105f186dc

View File

@@ -187,7 +187,7 @@ export function DialogConnectProvider(props: { provider: string }) {
{(i) => (
<div class="w-full flex items-center gap-x-2">
<div class="w-4 h-2 rounded-[1px] bg-input-base shadow-xs-border-base flex items-center justify-center">
<div class="w-2.5 h-0.5 bg-icon-strong-base hidden" data-slot="list-item-extra-icon" />
<div class="w-2.5 h-0.5 ml-0 bg-icon-strong-base hidden" data-slot="list-item-extra-icon" />
</div>
<span>{methodLabel(i)}</span>
</div>