fix(web): standardize transition durations to 0.15s #73
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Ref:
docs/STYLE.md§ Transitions & AnimationAll interactive state changes should use
transition: all 0.15s ease.Deviations found:
CategoryPicker.tsx:75— uses0.1sAppShell.tsx:61— uses0.2sAuditSummaryBar.tsx:43— uses0.2sFix: Change all transition durations to
0.15s. Also ensure the property isallrather than scoped to a single property (e.g.background-color 0.1s→all 0.15s ease).