Lidarr/frontend/src/Components/Page/PageJumpBar.css

23 lines
375 B
CSS
Raw Normal View History

2017-09-04 02:20:56 +00:00
.jumpBar {
display: flex;
align-content: stretch;
2017-10-07 06:21:06 +00:00
align-items: stretch;
2017-09-04 02:20:56 +00:00
align-self: stretch;
justify-content: center;
flex: 0 0 30px;
}
.jumpBarItems {
display: flex;
justify-content: space-around;
flex: 0 0 100%;
flex-direction: column;
overflow: hidden;
}
@media only screen and (max-width: $breakpointSmall) {
.jumpBar {
display: none;
}
}