mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-19 03:48:18 -07:00
20 lines
290 B
CSS
20 lines
290 B
CSS
|
.appfooter {
|
|||
|
background: #1c1c1c;
|
|||
|
position: fixed;
|
|||
|
left: 0;
|
|||
|
right: 0;
|
|||
|
z-index: 1;
|
|||
|
bottom: 0;
|
|||
|
}
|
|||
|
|
|||
|
.appfooter-headroom {
|
|||
|
transition: transform 180ms linear;
|
|||
|
}
|
|||
|
|
|||
|
.appfooter--pinned {
|
|||
|
transform: none;
|
|||
|
}
|
|||
|
|
|||
|
.appfooter--unpinned {
|
|||
|
transform: translateY(100%);
|
|||
|
}
|