_navbar.scss 618 B

12345678910111213141516171819202122232425262728293031323334353637
  1. .grw-navbar-bottom {
  2. height: $grw-navbar-bottom-height;
  3. // apply transition
  4. transition-property: bottom;
  5. @include apply-navigation-transition();
  6. &.grw-navbar-bottom-drawer-opened {
  7. bottom: -$grw-navbar-bottom-height;
  8. }
  9. }
  10. .grw-custom-nav-tab,
  11. .grw-custom-nav-dropdown {
  12. svg {
  13. width: 17px;
  14. height: 17px;
  15. margin-right: 5px;
  16. vertical-align: text-bottom;
  17. }
  18. }
  19. .grw-custom-nav-tab {
  20. .nav-title {
  21. flex-wrap: nowrap;
  22. }
  23. .nav-link {
  24. padding: 1rem 1.5rem;
  25. }
  26. .grw-nav-slide-hr {
  27. border-top: 0rem;
  28. border-bottom: 3px solid;
  29. transition: 0.3s ease-in-out;
  30. }
  31. }