This commit is contained in:
krille-chan 2023-12-11 14:22:02 +00:00
parent 56a14d9427
commit 553f3da1d0
3 changed files with 20 additions and 17 deletions

View file

@ -5,8 +5,8 @@ const CACHE_NAME = 'flutter-app-cache';
const RESOURCES = {"manifest.json": "cc4b6aa791018840b65fd0b0e325b201",
"favicon.png": "a409751f0ecf6dee76fb350d7402f9be",
"index.html": "0c5a41f6f6dcff928eac3cb371b923f5",
"/": "0c5a41f6f6dcff928eac3cb371b923f5",
"index.html": "7718d57424aba8c9e12e61351b8c6305",
"/": "7718d57424aba8c9e12e61351b8c6305",
"main.dart.js": "8d01d4f3d7c736fb689d164febcf3500",
"assets/FontManifest.json": "1114a5860d5e995c8dc48419a7a6a9e7",
"assets/AssetManifest.json": "4ce8496db0bf33773a61ee0965f7b3fa",
@ -78,7 +78,7 @@ const RESOURCES = {"manifest.json": "cc4b6aa791018840b65fd0b0e325b201",
"icons/Icon-512.png": "f57dad4f6efa0339b50d5c65f36dc03c",
"icons/Icon-192.png": "839e87c4f6800df757bb28180f8e2949",
"flutter.js": "7d69e653079438abfbb24b82a655b0a4",
"splash/style.css": "d284d01cad91aeea699e23fe4698ccf1",
"splash/style.css": "52986a9e1d69ad779d02334a06b33a81",
"splash/img/light-3x.png": "da261be18bbda768fa1462fd8a8cef46",
"splash/img/dark-2x.png": "9371a9e18df59f2bbe9b32e04c3fc5d4",
"splash/img/light-1x.png": "db5b72b7f4b38640c974f20d9c90f464",

View file

@ -36,7 +36,7 @@
<script>
// The value below is injected by flutter build, do not touch.
const serviceWorkerVersion = "3699687281";
const serviceWorkerVersion = "3735528669";
</script>
<!-- This script adds the flutter initialization JS code -->
<script src="flutter.js" defer></script>

View file

@ -1,8 +1,8 @@
body, html {
margin:0;
height:100%;
body,
html {
margin: 0;
height: 100%;
background: #ffffff;
background-image: url("img/light-background.png");
background-size: 100% 100%;
}
@ -16,28 +16,31 @@ body, html {
}
.contain {
display:block;
width:100%; height:100%;
display: block;
width: 100%;
height: 100%;
object-fit: contain;
}
.stretch {
display:block;
width:100%; height:100%;
display: block;
width: 100%;
height: 100%;
}
.cover {
display:block;
width:100%; height:100%;
display: block;
width: 100%;
height: 100%;
object-fit: cover;
}
@media (prefers-color-scheme: dark) {
body {
margin:0;
height:100%;
margin: 0;
height: 100%;
background: #000000;
background-image: url("img/dark-background.png");
background-size: 100% 100%;
}
}
}