Skip to content

Commit

Permalink
fix(reactstrap#2744): Toast fade fix with d-block to override Bootstr…
Browse files Browse the repository at this point in the history
…ap's display none
  • Loading branch information
davidlyons committed Sep 15, 2023
1 parent 61f2453 commit 85a9a91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Toast.js
Expand Up @@ -35,7 +35,7 @@ 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 85a9a91

Please sign in to comment.