Files
storage-service-ui/src/components/modal-sidebar/ModalSidebarAnimation.css

20 lines
211 B
CSS

@keyframes ModalSidebarShow {
from {
right: -100%;
}
to {
right: 0;
}
}
@keyframes ModalSidebarHide {
from {
right: 0;
}
to {
right: -100%;
}
}