Raise delete strike overlay above row content
All checks were successful
Build and Deploy Gateway / build-and-push (push) Successful in 19s
Build and Deploy Gateway / deploy (push) Successful in 6s

This commit is contained in:
2026-07-12 00:14:54 +03:00
parent 56304514ff
commit d49a1f6837
4 changed files with 18 additions and 11 deletions

View File

@@ -392,11 +392,6 @@ function LocalRulesPanel({
style={{ viewTransitionName: rule.removing ? 'none' : rule._key }}
inert={rule.removing ? true : undefined}
>
<span
className="client-delete-strike"
aria-hidden="true"
onAnimationEnd={() => onRemoveComplete(rule._key)}
/>
<button
className="client-local-rule-enabled"
type="button"
@@ -436,6 +431,11 @@ function LocalRulesPanel({
>
×
</button>
<span
className="client-delete-strike"
aria-hidden="true"
onAnimationEnd={() => onRemoveComplete(rule._key)}
/>
</div>
);
})}