34 lines
381 B
CSS
34 lines
381 B
CSS
.entering {
|
|
opacity: 1;
|
|
}
|
|
|
|
.entered {
|
|
opacity: 1;
|
|
}
|
|
|
|
.exiting {
|
|
opacity: 0;
|
|
}
|
|
|
|
.exited {
|
|
opacity: 0;
|
|
}
|
|
|
|
:root {
|
|
--toastify-toast-offset: 52px;
|
|
}
|
|
|
|
.Toastify__toast-body {
|
|
padding: 0;
|
|
margin: 0 4px 0 0;
|
|
align-items: normal;
|
|
font-family: "Inter", sans-serif;
|
|
font-size: 14px;
|
|
color: #111c26;
|
|
}
|
|
|
|
.Toastify__toast-icon {
|
|
width: auto;
|
|
margin-inline-end: 8px;
|
|
}
|