index.css 504 B

12345678910111213141516171819202122232425262728293031
  1. @tailwind base;
  2. @tailwind components;
  3. @tailwind utilities;
  4. .activityindicator {
  5. border-top-color: currentColor;
  6. -webkit-animation: spinner 0.75s linear infinite;
  7. animation: spinner 0.75s linear infinite;
  8. }
  9. @-webkit-keyframes spinner {
  10. 0% {
  11. -webkit-transform: rotate(0deg);
  12. }
  13. 100% {
  14. -webkit-transform: rotate(360deg);
  15. }
  16. }
  17. @keyframes spinner {
  18. 0% {
  19. transform: rotate(0deg);
  20. }
  21. 100% {
  22. transform: rotate(360deg);
  23. }
  24. }
  25. .jsmpeg canvas {
  26. position: static !important;
  27. }