App.scss 509 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. .Logo {
  2. img {
  3. max-height: 100px;
  4. }
  5. }
  6. .GoodCard {
  7. border: 1px solid black;
  8. border-radius: 15px;
  9. margin: 15px 0;
  10. img {
  11. max-width: 300px;
  12. }
  13. }
  14. .App {
  15. text-align: center;
  16. header {
  17. .Logo {
  18. img {
  19. max-height: 100px;
  20. }
  21. }
  22. }
  23. main {
  24. display: flex;
  25. flex-direction: row;
  26. aside {
  27. width: 30%;
  28. background-color: cyan;
  29. }
  30. }
  31. footer {
  32. background-color: #303030;
  33. .Logo {
  34. img {
  35. max-height: 200px;
  36. }
  37. }
  38. }
  39. }