forked from NotNet/gluestick
32 lines
No EOL
473 B
CSS
32 lines
No EOL
473 B
CSS
.toast {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 1rem;
|
|
background-color: var(--bg-dark);
|
|
margin: 1rem 0;
|
|
border-radius: 0.25rem;
|
|
|
|
animation-name: pop-in;
|
|
animation-timing-function: ease-in-out;
|
|
animation-duration: 250ms;
|
|
animation-iteration-count: 1;;
|
|
}
|
|
|
|
.toast svg {
|
|
height: 0.9em;
|
|
margin-right: 0.5rem;
|
|
}
|
|
|
|
@keyframes pop-in {
|
|
0% {
|
|
transform: scale(1);
|
|
}
|
|
|
|
50% {
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
100% {
|
|
transform: scale(1);
|
|
}
|
|
} |