_nav-list.scss 294 B

123456789101112131415161718192021
  1. .nav-list {
  2. font-family: $font-family-base;
  3. ul {
  4. display: flex;
  5. align-items: center;
  6. justify-content: center;
  7. height: 26px;
  8. padding: 0;
  9. margin: 0;
  10. }
  11. li {
  12. list-style: none;
  13. line-height: 0;
  14. &:not(:last-child) {
  15. margin-right: 20px;
  16. }
  17. }
  18. }