mirror of
https://github.com/donpat1to/Schichtenplaner.git
synced 2025-12-01 06:55:45 +01:00
fixed notification containers z-index
This commit is contained in:
@@ -60,9 +60,9 @@ const NotificationContainer: React.FC = () => {
|
|||||||
return (
|
return (
|
||||||
<div style={{
|
<div style={{
|
||||||
position: 'fixed',
|
position: 'fixed',
|
||||||
top: '20px',
|
top: '90px', // Changed from 20px to 90px to account for header height
|
||||||
right: '20px',
|
right: '20px',
|
||||||
zIndex: 1000
|
zIndex: 9999 // Increased from 1000 to 9999
|
||||||
}}>
|
}}>
|
||||||
{notifications.map(notification => (
|
{notifications.map(notification => (
|
||||||
<div
|
<div
|
||||||
|
|||||||
Reference in New Issue
Block a user