mirror of
https://github.com/Vencord/Vesktop.git
synced 2025-02-23 05:35:09 +00:00
Important splash screen fix
This commit is contained in:
parent
db76f111c8
commit
ca376d35ab
1 changed files with 41 additions and 22 deletions
|
@ -1,29 +1,48 @@
|
||||||
<head>
|
<head>
|
||||||
<style>
|
<style>
|
||||||
|
* {
|
||||||
|
user-select: none;
|
||||||
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
|
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
|
||||||
|
"Open Sans", "Helvetica Neue", sans-serif;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.wrapper {
|
.wrapper {
|
||||||
|
box-sizing: border-box;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
background-color: hsl(223 6.7% 20.6%);
|
background-color: hsl(223 6.7% 20.6%);
|
||||||
border-radius: 6px;
|
border-radius: 8px;
|
||||||
|
border: 1px solid hsl(220 6.5% 18%);
|
||||||
}
|
}
|
||||||
|
|
||||||
p {
|
p {
|
||||||
color: white;
|
color: rgb(219, 222, 225);
|
||||||
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
|
text-align: center;
|
||||||
"Open Sans", "Helvetica Neue", sans-serif;
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
width: 6em;
|
||||||
|
height: 6em;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<div class="wrapper">
|
<div class="wrapper">
|
||||||
<p>Loading...</p>
|
<img
|
||||||
|
draggable="false"
|
||||||
|
src="https://cdn.discordapp.com/emojis/1024751291504791654.gif?size=2048"
|
||||||
|
alt="shiggy"
|
||||||
|
role="presentation"
|
||||||
|
/>
|
||||||
|
<p>Loading Vencord Desktop...</p>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
Loading…
Add table
Reference in a new issue