Build 29068563

This commit is contained in:
Renan LE CARO 2025-04-08 14:03:38 +02:00
parent 6ef13f2d19
commit df8bfbb350
25 changed files with 384 additions and 336 deletions

View file

@ -513,34 +513,31 @@ h2.histogram-title strong {
}
}
.toast {
position:fixed;
left:0;
top:40px;
display:flex;
align-items:center;
gap:10px;
opacity:0.8;
background:black;
border:1px solid white;
border-radius:2px;
padding-right:10px;
position: fixed;
left: 0;
top: 40px;
display: flex;
align-items: center;
gap: 10px;
opacity: 0.8;
background: black;
border: 1px solid white;
border-radius: 2px;
padding-right: 10px;
pointer-events: none;
animation: toast 800ms forwards;
animation: toast forwards;
}
@keyframes toast {
0%{
0%,
100% {
opacity: 0;
transform:translate(-20px, 0);
transform: translate(-20px, -20px) scale(0.5);
}
10%,90%{
10%,
90% {
opacity: 0.8;
transform: none;
}
100%{
opacity: 0;
transform:translate(20px, 0);
}
}
}