48 lines
789 B
CSS
48 lines
789 B
CSS
|
|
.toast {
|
||
|
|
position: fixed;
|
||
|
|
bottom: calc(80px + env(safe-area-inset-bottom, 0px));
|
||
|
|
left: 50%;
|
||
|
|
transform: translateX(-50%) translateY(100px);
|
||
|
|
z-index: 1000;
|
||
|
|
background: white;
|
||
|
|
border-radius: 0.5rem;
|
||
|
|
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
|
||
|
|
padding: 1rem 1.5rem;
|
||
|
|
min-width: 250px;
|
||
|
|
max-width: 400px;
|
||
|
|
opacity: 0;
|
||
|
|
transition: all 0.3s ease-out;
|
||
|
|
}
|
||
|
|
|
||
|
|
.toast-success {
|
||
|
|
background: white;
|
||
|
|
}
|
||
|
|
|
||
|
|
.toast-error {
|
||
|
|
background: #fef2f2;
|
||
|
|
border: 1px solid #fecaca;
|
||
|
|
}
|
||
|
|
|
||
|
|
.toast-visible {
|
||
|
|
transform: translateX(-50%) translateY(0);
|
||
|
|
opacity: 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
.toast-content {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
gap: 0.75rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.toast-message {
|
||
|
|
color: #1f2937;
|
||
|
|
font-size: 0.875rem;
|
||
|
|
font-weight: 500;
|
||
|
|
line-height: 1.5;
|
||
|
|
}
|
||
|
|
|
||
|
|
.toast-error .toast-message {
|
||
|
|
color: #991b1b;
|
||
|
|
}
|
||
|
|
|