index.css 262 B

1234567891011121314151617
  1. body {
  2. display: flex;
  3. flex-direction: row;
  4. justify-content: space-around;
  5. }
  6. main {
  7. display: flex;
  8. flex-direction: column;
  9. margin: 30px 20px;
  10. }
  11. #apiList {
  12. display: flex;
  13. flex-direction: row;
  14. justify-content: space-between;
  15. }