tauri-app/public/splashscreen.html

23 lines
272 B
HTML
Raw Normal View History

2024-01-14 14:26:14 +00:00
<style>
2024-02-11 17:12:40 +00:00
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
2024-01-14 14:26:14 +00:00
2024-02-11 17:12:40 +00:00
body {
background-color: #131317;
color: #fff;
2024-01-14 14:26:14 +00:00
2024-02-11 17:12:40 +00:00
display: flex;
align-items: center;
justify-content: center;
width: 100dvw;
height: 100dvh;
}
2024-01-14 14:26:14 +00:00
</style>
<div>
2024-02-11 17:12:40 +00:00
<h3>Loading...</h3>
2024-01-14 14:26:14 +00:00
</div>