App.module.css 472 B

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