Style fix

Adjust the scale factor to ensure visual consistency. Currently, the default scale factor causes the 'skip intro' text to appear disproportionately larger than the surrounding box upon selection of the skip button within the TV layout. This reduces the scale factor appropriately.
This commit is contained in:
rlauu 2024-03-13 14:25:00 +01:00 committed by GitHub
parent 19fcbfb9b0
commit 1df791ca52
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -73,6 +73,10 @@ introSkipper.injectCss = function () {
}
}
#skipIntro .paper-icon-button-light.show-focus:focus {
transform: scale(1.04) !important;
}
#skipIntro.upNextContainer {
width: unset;
}
@ -215,4 +219,4 @@ introSkipper.secureFetch = async function (url) {
if (res.status !== 200) { throw new Error(`Expected status 200 from ${url}, but got ${res.status}`); }
return await res.json();
}
introSkipper.setup();
introSkipper.setup();