Restructure project: use base.css + modules approach like example

This commit is contained in:
2026-02-17 09:44:25 +03:00
parent 308e480307
commit 2db5eddfb4
19 changed files with 1959 additions and 1167 deletions

View File

@@ -0,0 +1,14 @@
/*
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;
}