App.scss 477 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. .App {
  2. text-align: center;
  3. }
  4. .Logo {
  5. height: 40vmin;
  6. pointer-events: none;
  7. }
  8. header {
  9. height: 100px;
  10. .Logo {
  11. max-height: 100px;
  12. }
  13. }
  14. main {
  15. display: flex;
  16. aside {
  17. width: 16%;
  18. text-align: left;
  19. ul {
  20. li {
  21. list-style-type: none;
  22. }
  23. }
  24. }
  25. }
  26. .GoodCard {
  27. list-style-type: none;
  28. }
  29. footer {
  30. max-height: 200px;
  31. background-color: #383838;
  32. display: flex;
  33. align-items: center;
  34. .Logo {
  35. max-height: 50px;
  36. }
  37. }