mirror of
https://github.com/Radarr/Radarr.git
synced 2026-03-29 18:15:37 -04:00
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;
|
|
}
|
|
}
|