@import "var";

:host{
  flex-grow: 1;
  flex-basis: 0;
	height: 100%;
}
.@{prefixName}-tabbar-item{
  width: 100%;
  height: 100%;
	.flex(@flex-direction: column, @align-items: center, @justify-content: center);
	font-size: 0;
	box-sizing: border-box;
	position: relative;
  &--circle{
    border-radius: 50%;
    background-color: @tabbar-item-background-color;
		.flex(@align-items: center, @justify-content: center);
	}
	&__badge:empty{
		display: none;
	}
	&__title{
		line-height: 1;
		margin-top: @tabbar-item-title-margin-top;
	}
	&__underline{
		position: absolute;
		left: 50%;
		transform: translate3d(-50%, 0, 0);
		bottom: 0;
		width: 100%;
		max-width: 80px;
		border-bottom-width: 4px;
		border-bottom-style: solid;
	}
}
