Files
Octopus-React-Wp/frontend/src/components/CriticalAlert.css
T
sebvtl728 56dc1f2256 404
2025-01-18 17:48:14 +01:00

22 lines
372 B
CSS

.critical-alert-overlay {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background: rgba(0, 0, 0, 0.8);
display: flex;
justify-content: center;
align-items: center;
z-index: 9999;
}
.critical-alert-box {
background: white;
padding: 20px;
border-radius: 5px;
text-align: center;
box-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
}