1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Merge pull request #1701 from MrTimscampi/mobile-logo

Use emblem when loading on mobile

(cherry picked from commit 60d9af0d75)
Signed-off-by: Joshua M. Boniface <joshua@boniface.me>
This commit is contained in:
dkanada 2020-07-31 14:17:38 +09:00 committed by Joshua M. Boniface
parent 26d29dc2cb
commit f11b27fc14

View file

@ -129,7 +129,7 @@
animation: fadein 0.5s;
width: 30%;
height: 30%;
background-image: url(assets/img/banner-light.png);
background-image: url(assets/img/icon-transparent.png);
background-position: center center;
background-repeat: no-repeat;
background-size: contain;
@ -139,6 +139,14 @@
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
@media screen
and (min-device-width: 992px)
and (-webkit-min-device-pixel-ratio: 1) {
.splashLogo {
background-image: url(assets/img/banner-light.png);
}
}
</style>
</head>
<body>