nav-tabs.component.scss 812 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. .bottom-navigation {
  2. display: flex;
  3. justify-content: space-evenly;
  4. padding: 10px;
  5. background-color: #f5f5f5;
  6. position: fixed;
  7. bottom: 0px;
  8. left:0px;
  9. width: 100vw;
  10. .tab-button {
  11. button {
  12. border:none;
  13. display: flex;
  14. flex-direction: column;
  15. align-items: center;
  16. justify-content: center;
  17. background: none;
  18. color: #888;
  19. svg {
  20. width: 2em;height: 2em;
  21. // width: 24px;
  22. // height: 24px;
  23. margin-bottom: 5px;
  24. }
  25. img {
  26. width: 24px;
  27. height: 24px;
  28. margin-bottom: 5px;
  29. }
  30. span {
  31. font-size: 12px;
  32. }
  33. }
  34. .active {
  35. color: #000;
  36. font-weight: bold;
  37. }
  38. }
  39. }