2021-01-28 12:58:35 +01:00
|
|
|
@import "../css/variables.module";
|
2021-01-15 20:32:46 +05:30
|
|
|
|
|
|
|
.excalidraw {
|
|
|
|
.Toast {
|
|
|
|
animation: fade-in 0.5s;
|
|
|
|
background-color: var(--button-gray-1);
|
|
|
|
border-radius: 4px;
|
|
|
|
bottom: 10px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
cursor: default;
|
|
|
|
left: 50%;
|
|
|
|
margin-left: -150px;
|
|
|
|
padding: 4px 0;
|
2021-02-14 18:18:34 +05:30
|
|
|
position: absolute;
|
2021-01-15 20:32:46 +05:30
|
|
|
text-align: center;
|
|
|
|
width: 300px;
|
|
|
|
z-index: 999999;
|
|
|
|
}
|
|
|
|
|
|
|
|
.Toast__message {
|
|
|
|
color: var(--popup-text-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes fade-in {
|
|
|
|
from {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|