subnav.scss 523 B

123456789101112131415161718192021222324252627282930313233
  1. @use './mixins' as *;
  2. .sub-nav {
  3. @include with-border;
  4. @include with-bg;
  5. position: sticky;
  6. top: 0;
  7. left: 0;
  8. width: 100%;
  9. display: flex;
  10. padding: 0 32px;
  11. justify-content: space-between;
  12. z-index: var(--sub-nav-z-index);
  13. overflow: hidden;
  14. @media (max-width: 767px) {
  15. padding: 0 24px;
  16. }
  17. .go-back-top {
  18. transform: translateY(100%);
  19. opacity: 0;
  20. &.show {
  21. transform: translateY(0);
  22. opacity: 1;
  23. }
  24. }
  25. @include respond-to('lg') {
  26. display: none !important;
  27. }
  28. }