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/appfooter/appfooter.css

21 lines
389 B
CSS
Raw Normal View History

2016-08-15 14:18:05 -04:00
.appfooter {
background: #1c1c1c;
position: fixed;
left: 0;
right: 0;
z-index: 1;
bottom: 0;
transition: transform 180ms linear;
2016-08-31 15:17:11 -04:00
contain: layout style;
2016-08-15 14:18:05 -04:00
}
2016-09-18 01:52:10 -04:00
.appfooter-blurred {
background: rgba(28,28,28,.92);
-webkit-backdrop-filter: blur(5px);
backdrop-filter: blur(5px);
}
.appfooter.headroom--unpinned {
transform: translateY(100%);
}