49 lines
878 B
CSS
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;
|
|
}
|