GrowiNavbarBottom.module.scss 602 B

1234567891011121314151617181920212223242526272829303132
  1. @use '~/styles/variables' as var;
  2. @use '~/styles/mixins';
  3. .grw-navbar-bottom :global {
  4. // apply transition
  5. transition-property: bottom;
  6. @include mixins.apply-navigation-transition();
  7. .navbar {
  8. height: var.$grw-navbar-bottom-height;
  9. }
  10. }
  11. .grw-navbar-bottom-drawer-opened {
  12. bottom: #{-1 * var.$grw-navbar-bottom-height};
  13. }
  14. // centering icons
  15. .grw-navbar-bottom :global {
  16. .nav-link {
  17. display: flex;
  18. align-items: center;
  19. }
  20. }
  21. // == Colors
  22. .grw-navbar-bottom :global {
  23. .navbar {
  24. background-color: rgba(var(--bs-body-bg-rgb), 0.7);
  25. backdrop-filter: blur(35px);
  26. }
  27. }