Files
Tolfin/example/modules/change-logo.css

15 lines
380 B
CSS

/*
This module will change the Jellyfin logo to a custom one.
This allows you to white-label your Jellyfin instance slightly.
This can be used as a standalone module.
*/
:root {
--logo-url: url('https://cdn.jsdelivr.net/gh/JamsRepos/Jamfin@latest/assets/banner.png');
}
.pageTitleWithDefaultLogo,
.spashLogo {
background-image: var(--logo-url) !important;
}