reactjs-bottom-navigation
Version:
A flexible bottom navigation component for React applications
37 lines (33 loc) • 683 B
CSS
.bottom-nav {
position: fixed;
width: 100%;
display: flex;
justify-content: space-between;
bottom: 0;
right: 0;
background-color: white;
z-index: 1;
height: 64px;
border-top: 1px solid #ebebeb;
transform: translateY(0%);
transition: transform 0.3s ease;
}
.bottom-nav.hidden{
transform: translateY(100%);
}
.bottom-nav-item {
flex-grow: 1;
flex-basis: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100%;
transition: background-color 0.3s ease;
cursor: pointer;
}
.bottom-nav-item-title {
margin-top: 4px;
font-size: 12px;
margin-bottom: 0px;
}