@import './var.less';

:root {
  --glm-tabbar-height: @tabbar-height;
  --glm-tabbar-z-index: @tabbar-z-index;
  --glm-tabbar-background-color: @tabbar-background-color;
}

.glm-tabbar {
  z-index: var(--glm-tabbar-z-index);
  display: flex;
  box-sizing: content-box;
  width: 100%;
  height: var(--glm-tabbar-height);
  background: var(--glm-tabbar-background-color);

  &--fixed {
    position: fixed;
    bottom: 0;
    left: 0;
  }
}
