category_nav.css 541 B

12345678910111213141516171819202122232425262728
  1. .nav-item image {
  2. width: 30px;
  3. height: 30px;
  4. border-radius: 50%;
  5. }
  6. .category-nav-container {
  7. display: flex;
  8. flex-direction: row;
  9. justify-content: flex-start;
  10. flex-wrap: wrap;
  11. text-align: center;
  12. background-color: #fff;
  13. padding: 0px 0;
  14. }
  15. .nav-item {
  16. width: 20%;
  17. padding: 10px 0px;
  18. box-sizing: border-box;
  19. font-size: 12px;
  20. display: flex;
  21. flex-direction: column;
  22. justify-content: center;
  23. align-items: center;
  24. }
  25. .category-name {
  26. margin-top: 5px;
  27. font-size: 12px;
  28. }