payment/payment_headend/css/customAlert.css

17 lines
398 B
CSS
Raw Normal View History

2024-11-20 17:09:07 +00:00
.custom-alert {
display: none;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: rgba(0, 0, 0, 0.8);
color: white;
padding: 15px 30px;
border-radius: 5px;
font-size: 16px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
z-index: 1000;
opacity: 0;
2024-11-21 12:11:16 +00:00
transition: opacity 1s ease-in-out;
2024-11-20 17:09:07 +00:00
text-align: center;
}