| 123456789101112131415161718192021222324 |
- @use '~/styles/variables' as var;
- @use '~/styles/mixins';
- .grw-navbar-bottom :global {
- // apply transition
- transition-property: bottom;
- @include mixins.apply-navigation-transition();
- .navbar {
- height: var.$grw-navbar-bottom-height;
- }
- }
- .grw-navbar-bottom-drawer-opened {
- bottom: #{-1 * var.$grw-navbar-bottom-height};
- }
- // centering icons
- .grw-navbar-bottom :global {
- .nav-link {
- display: flex;
- align-items: center;
- }
- }
|