Skip to content

Commit

Permalink
fix(reactstrap#2744): Toast fade fix with display block
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlyons committed Sep 15, 2023
1 parent 61f2453 commit 6b07cdb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/Toast.js
Expand Up @@ -35,7 +35,10 @@ function Toast(props) {
...attributes
} = props;

const classes = mapToCssModules(classNames(className, 'toast'), cssModule);
const classes = mapToCssModules(
classNames(className, 'toast d-block'),
cssModule,
);

const toastTransition = {
...Fade.defaultProps,
Expand Down

0 comments on commit 6b07cdb

Please sign in to comment.