Files
micro-frontend/ng-ttc-frontend/src/app/component/budget-aproval/budget-aproval.css

17 lines
505 B
CSS
Raw Normal View History

2025-11-25 21:11:57 +07:00
.animate-fade-in-down { animation: fadeInDown 0.3s ease-out; }
.animate-fade-in { animation: fadeIn 0.2s ease-out; }
@keyframes fadeInDown {
from { opacity: 0; transform: translateY(-10px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}