1641b58e55
* CSS animation for toasts * Smaller toasts * CSS animation for offcanvas * faster animations and toast from the bottom --------- Co-authored-by: Keyan <34140557+huumn@users.noreply.github.com> Co-authored-by: k00b <k00b@stacker.news>
15 lines
235 B
CSS
15 lines
235 B
CSS
.offcanvas {
|
|
max-width: 250px;
|
|
z-index: 10000;
|
|
right: -100%;
|
|
animation: slide ease-out 0.2s;
|
|
}
|
|
|
|
@keyframes slide {
|
|
0% {
|
|
transform: translateX(100%);
|
|
}
|
|
100% {
|
|
transform: translateX(0%)
|
|
}
|
|
} |