No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_nav.scss 450B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // Nav
  3. //
  4. // Nav wrapper (container)
  5. // Nav wrapper
  6. .nav-wrapper {
  7. padding: 1rem 0;
  8. @include border-top-radius($card-border-radius);
  9. + .card {
  10. @include border-top-radius(0);
  11. @include border-bottom-radius($card-border-radius);
  12. }
  13. }
  14. // Nav links
  15. .nav-link {
  16. color: $nav-link-color;
  17. &:hover {
  18. color: $nav-link-hover-color;
  19. }
  20. i.ni {
  21. position: relative;
  22. top: 2px;
  23. }
  24. }