We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fade
MessageBarGroup uses Griffel animationName for opacity transitions:
MessageBarGroup
animationName
// useMessageBarGroupStyles.styles.ts enter: { animationName: { from: { opacity: 0, transform: 'translateY(-100%)', }, to: { opacity: 1, transform: 'translateY(0)', }, }, }, exit: { animationName: { from: { opacity: 1, }, to: { opacity: 0, }, }, },
Replace the opacity CSS keyframes with a Fade motion component.
The text was updated successfully, but these errors were encountered:
Pausing to investigate migration of fade + slide together.
Sorry, something went wrong.
Closing as a dupe as there is #33470.
robertpenner
No branches or pull requests
MessageBarGroup
uses GriffelanimationName
for opacity transitions:Replace the opacity CSS keyframes with a
Fade
motion component.The text was updated successfully, but these errors were encountered: