react-simple-snackbar
react-simple-snackbar copied to clipboard
Z-index issue
by default the parent item is having z-index:1, which makes it invisible if there's other content on page with z-index 2,3,5 , 10 or so on. it would be better to provide a option to change the z-index, we can't we it with css also. Yea the below hack works but there should option to configure that else you can keep the default z-index to 9999 as we always want it on top.
[class*="Snackbar_snackbar-wrapper"] {
z-index: 9999 !important;
}