GrowiNavbarBottom.module.scss 360 B

12345678910111213141516
  1. @use '~/styles/variables' as var;
  2. @use '~/styles/mixins';
  3. .grw-navbar-bottom :global {
  4. height: var.$grw-navbar-bottom-height;
  5. // apply transition
  6. transition-property: bottom;
  7. @include mixins.apply-navigation-transition();
  8. }
  9. .grw-navbar-bottom {
  10. &:global(.grw-navbar-bottom-drawer-opened) {
  11. bottom: #{-1 * var.$grw-navbar-bottom-height};
  12. }
  13. }