Changes to be committed:

modified:   src/shared/settings.d.ts
	modified:   static/views/splash.html
This commit is contained in:
Sammie Zhang 2024-05-07 00:19:38 -07:00
parent 2f2283137d
commit 16bd46cbc9
No known key found for this signature in database
GPG key ID: 94E117FC99C11E1A
2 changed files with 5 additions and 8 deletions

View file

@ -29,6 +29,7 @@ export interface Settings {
splashTheming?: boolean; splashTheming?: boolean;
splashColor?: string; splashColor?: string;
splashAnimationPath?: string;
splashBackground?: string; splashBackground?: string;
} }

View file

@ -25,19 +25,15 @@
img { img {
width: 128px; width: 128px;
height: 128px; height: 128px;
image-rendering: pixelated;
} }
</style> </style>
</head> </head>
<body> <body>
<div class="wrapper"> <div class="wrapper">
<img <!-- the data url is here to ensure there isn't an empty frame before the image is loaded -->
draggable="false" <img id="animation" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="
src="../shiggy.gif" draggable="false" alt="animation" role="presentation" />
alt="shiggy"
role="presentation"
/>
<p>Loading Vesktop...</p> <p>Loading Vesktop...</p>
</div> </div>
</body> </body>