You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While reviewing the file apps/web/src/components/Banner/PolicyBanner.tsx, I noticed a small typo in a Tailwind class: There’s a missing space between transition-all and active:bg-[#06318E]. This prevents the active: state from working correctly.
Steps
Original line:
className="... transition-allactive:bg-[#06318E] ..."
Suggested fix:
className="... transition-all active:bg-[#06318E] ..."Ihavesubmittedapullrequesttofixthis here: [#2501](https://github.com/base/web/pull/2501)
### ExpectedbehaviorThebutton's active state should apply the correct styles when pressed, with proper spacing in the Tailwind classes.
### Additionalinfo_Noresponse_
### Environment_Noresponse_