1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
jellyfin-web/dashboard-ui/components/dockedtabs/dockedtabs.css

25 lines
341 B
CSS
Raw Normal View History

2016-08-14 02:21:30 -04:00
.dockedtabs {
height: 60px;
background: #212121;
position: fixed;
left: 0;
right: 0;
z-index: 99999;
}
.dockedtabs-bottom {
bottom: 0;
}
.dockedtabs-headroom {
transition: transform 180ms linear;
}
.dockedtabs--pinned {
transform: none;
}
.dockedtabs--unpinned {
transform: translateY(100%);
}