@tantainnovative/ndpr-toolkit
Version:
Nigerian Data Protection Compliance Toolkit for implementing NDPR and DPA compliant features
38 lines (33 loc) • 507 B
CSS
@keyframes slide-in-bottom {
from {
transform: translateY(100%);
}
to {
transform: translateY(0);
}
}
@keyframes slide-in-top {
from {
transform: translateY(-100%);
}
to {
transform: translateY(0);
}
}
@keyframes fade-in {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.animate-slide-in {
animation: slide-in-bottom 0.3s ease-out;
}
.animate-slide-in-top {
animation: slide-in-top 0.3s ease-out;
}
.animate-fade-in {
animation: fade-in 0.3s ease-out;
}