| 1234567891011121314151617181920212223242526272829303132 |
- @use '~/styles/variables' as var;
- @use '~/styles/bootstrap/init' as bs;
- /*
- * Fixed ver
- */
- $easeInOutCubic: cubic-bezier(0.65, 0, 0.35, 1);
- .grw-subnav-fixed-container {
- top: var.$grw-navbar-border-width;
- z-index: bs.$zindex-sticky - 5;
- }
- /*
- * Switching show/hide
- */
- .grw-subnav-switcher {
- :global {
- .grw-subnav-fixed-container {
- transition: transform 150ms $easeInOutCubic;
- }
- }
- &:global {
- &.grw-subnav-switcher-hidden {
- .grw-subnav-fixed-container {
- transition: unset;
- transform: translateY(-100%);
- }
- }
- }
- }
|