App.css 570 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. .App {
  2. /* text-align: center; */
  3. }
  4. .App-logo {
  5. height: 10vmin;
  6. pointer-events: none;
  7. }
  8. @media (prefers-reduced-motion: no-preference) {
  9. .App-logo {
  10. animation: App-logo-spin infinite 20s linear;
  11. }
  12. }
  13. .App-header {
  14. background-color: #282c34;
  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. }