Browse Source

Add z-index to snackbars container (#1244)

* Add z-index to snackbars container

* PR FIX
Rafał Pawłow 3 years ago
parent
commit
92e52cb771
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/providers/snackbars/snackbar.tsx

+ 2 - 1
src/providers/snackbars/snackbar.tsx

@@ -4,7 +4,7 @@ import { CSSTransition, TransitionGroup } from 'react-transition-group'
 
 
 import { Snackbar } from '@/shared/components/Snackbar'
 import { Snackbar } from '@/shared/components/Snackbar'
 import { SvgAlertError, SvgAlertInfo, SvgAlertSuccess, SvgAlertWarning } from '@/shared/icons'
 import { SvgAlertError, SvgAlertInfo, SvgAlertSuccess, SvgAlertWarning } from '@/shared/icons'
-import { sizes, transitions } from '@/shared/theme'
+import { sizes, transitions, zIndex } from '@/shared/theme'
 
 
 import { useSnackbarStore } from './store'
 import { useSnackbarStore } from './store'
 
 
@@ -65,4 +65,5 @@ const SnackbarsContainer = styled.div`
   max-width: 360px;
   max-width: 360px;
   width: 100%;
   width: 100%;
   display: grid;
   display: grid;
+  z-index: ${zIndex.nearSheetOverlay};
 `
 `