Change background-color to black if display-mode is fullscreen (#1605)

+ fullscreen which is the mode defined in manifest.webmanifest
This commit is contained in:
Dakurei 2024-08-25 00:56:50 +02:00 committed by GitHub
parent 1e4b3a45dd
commit 9bcbc66db0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 0 deletions

View File

@ -17,6 +17,12 @@ body {
background: #484050;
}
@media (display-mode: fullscreen) {
body {
background: #000000;
}
}
#links {
width: 90%;
text-align: center;