Files
Frontend-Internal-Developer…/frontend/src/app/components/toast/success/styles.module.css
2026-03-03 16:40:24 +08:00

49 lines
878 B
CSS

.toastContainer {
display: flex;
padding: 14px 10px 14px 16px;
align-items: center;
gap: 16px;
border-radius: 10px;
border: 1px solid #a6facc;
background: #eefdf3;
position: absolute;
bottom: 25px;
z-index: 11;
right: 20px;
animation-name: showToast;
animation-duration: 0.15s;
animation-timing-function: ease-in-out;
}
@keyframes showToast {
0% {
opacity: 0;
transform: translateX(100%);
}
100% {
opacity: 1;
transform: translateX(0%);
}
}
.messageContainer {
display: flex;
align-items: center;
gap: 12px;
}
.iconContainer {
display: flex;
padding: 4px;
justify-content: center;
align-items: center;
gap: 10px;
border-radius: 100px;
background: #a6facc;
}
.messageContainer p {
color: #006929;
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal;
}