app.component.scss 682 B

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