mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-22 22:14:44 -04:00
1f02423148
(cherry picked from commit 9c7378625112088d022239fdbdb90c0dc941d61d)
24 lines
406 B
CSS
24 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;
|
|
}
|
|
}
|