podcast page will now load from library

This commit is contained in:
booploops 2022-01-19 04:08:10 -08:00
parent 4dc4999cca
commit 062cbefb33
2 changed files with 86 additions and 7 deletions

View file

@ -2487,6 +2487,31 @@ input[type="range"].web-slider.display--small::-webkit-slider-thumb {
}
}
// Podcast Page
.content-inner.podcasts-page {
display: flex;
height: calc(100% - var(--navigationBarHeight));
padding: 0px;
.podcasts-list {
height: 100%;
width: 400px;
background: gray;
overflow-y: overlay;
}
.episodes-list {
height: 100%;
width: 100%;
background: black;
overflow-y: overlay;
}
}
/* Album / Playlist Page */
.playlist-page {
--bgColor: transparent;