Lidarr/frontend/src/Components/Page/PageJumpBar.css
Mark McDowall 77041a5401 Fixed: Series list jump bar click issues
(cherry picked from commit 9c7378625112088d022239fdbdb90c0dc941d61d)
2022-09-26 15:07:59 -05:00

23 lines
406 B
CSS

.jumpBar {
z-index: $pageJumpBarZIndex;
display: flex;
align-content: stretch;
align-items: stretch;
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;
}
}