App.css 595 B

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