We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11c7192 commit 9dec20bCopy full SHA for 9dec20b
curve_editor/ui/src/index.html
@@ -3,9 +3,28 @@
3
<head>
4
<meta charset="UTF-8">
5
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <style>
7
+ #root {
8
+ background-color: rgb(244, 244, 244);
9
+ color: rgb(128, 128, 128);
10
+ height: 100%;
11
+ display: flex;
12
+ font-family: system-ui, sans-serif;
13
+ }
14
+ .loading {
15
+ margin: auto;
16
17
+ @media (prefers-color-scheme: dark) {
18
19
+ background-color: rgb(33, 33, 33);
20
21
22
+ </style>
23
</head>
24
<body style="margin:0;height:100%;">
- <div id="root" style="height:100%;"></div>
25
+ <div id="root">
26
+ <div class="loading">読み込み中...</div>
27
+ </div>
28
<script src="js/bundle.js"></script>
29
</body>
30
</html>
0 commit comments