reports.component.css 213 B

123456789101112131415
  1. .approved {
  2. animation: highlight 1s;
  3. }
  4. @keyframes highlight {
  5. 0% {
  6. background: lightgreen
  7. }
  8. 100% {
  9. background: none;
  10. }
  11. }
  12. .field-full-width {
  13. width: 100%
  14. }