Important splash screen fix

This commit is contained in:
Vendicated 2023-04-09 22:29:59 +02:00
parent db76f111c8
commit ca376d35ab
No known key found for this signature in database
GPG key ID: A1DC0CFB5615D905

View file

@ -1,29 +1,48 @@
<head> <head>
<style> <style>
body { * {
margin: 0; user-select: none;
padding: 0; }
}
.wrapper { body {
height: 100%; font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
display: flex; "Open Sans", "Helvetica Neue", sans-serif;
justify-content: center; margin: 0;
align-items: center; padding: 0;
background-color: hsl(223 6.7% 20.6%); }
border-radius: 6px;
}
p { .wrapper {
color: white; box-sizing: border-box;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, height: 100%;
"Open Sans", "Helvetica Neue", sans-serif; display: flex;
} flex-direction: column;
</style> justify-content: center;
align-items: center;
background-color: hsl(223 6.7% 20.6%);
border-radius: 8px;
border: 1px solid hsl(220 6.5% 18%);
}
p {
color: rgb(219, 222, 225);
text-align: center;
}
img {
width: 6em;
height: 6em;
}
</style>
</head> </head>
<body> <body>
<div class="wrapper"> <div class="wrapper">
<p>Loading...</p> <img
</div> draggable="false"
src="https://cdn.discordapp.com/emojis/1024751291504791654.gif?size=2048"
alt="shiggy"
role="presentation"
/>
<p>Loading Vencord Desktop...</p>
</div>
</body> </body>