1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-26 22:56:23 -04:00
Files
Sonarr/frontend/src/Components/Page/PageJumpBar.css
T
Mark McDowall 5894b4fd95 v3 UI
2018-12-29 13:08:43 +01:00

23 lines
375 B
CSS

.jumpBar {
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;
}
}