App.css 545 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. .App {
  2. }
  3. .App-logo {
  4. height: 40vmin;
  5. pointer-events: none;
  6. }
  7. @media (prefers-reduced-motion: no-preference) {
  8. .App-logo {
  9. animation: App-logo-spin infinite 20s linear;
  10. }
  11. }
  12. .App-header {
  13. background-color: #282c34;
  14. min-height: 100vh;
  15. display: flex;
  16. flex-direction: column;
  17. align-items: center;
  18. justify-content: center;
  19. font-size: calc(10px + 2vmin);
  20. color: white;
  21. }
  22. .App-link {
  23. color: #61dafb;
  24. }
  25. @keyframes App-logo-spin {
  26. from {
  27. transform: rotate(0deg);
  28. }
  29. to {
  30. transform: rotate(360deg);
  31. }
  32. }