Skip to content
Snippets Groups Projects
Unverified Commit 6c1ce640 authored by Kyle Doherty's avatar Kyle Doherty Committed by GitHub
Browse files

force z-index on toasts (#7818)

parent a5234ff2
No related branches found
No related tags found
No related merge requests found
...@@ -26,7 +26,7 @@ const mapDispatchToProps = { ...@@ -26,7 +26,7 @@ const mapDispatchToProps = {
}; };
const UndoList = styled.ul` const UndoList = styled.ul`
${space}, z-index: 99; ${space};
`; `;
@connect(mapStateToProps, mapDispatchToProps) @connect(mapStateToProps, mapDispatchToProps)
...@@ -41,7 +41,7 @@ export default class UndoListing extends Component { ...@@ -41,7 +41,7 @@ export default class UndoListing extends Component {
render() { render() {
const { undos, performUndo, dismissUndo } = this.props; const { undos, performUndo, dismissUndo } = this.props;
return ( return (
<UndoList m={2} className="fixed left bottom"> <UndoList m={2} className="fixed left bottom zF">
{undos.map(undo => ( {undos.map(undo => (
<Card key={undo._domId} dark p={2}> <Card key={undo._domId} dark p={2}>
<Flex align="center"> <Flex align="center">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment