Skip to content

Commit f68fc68

Browse files
committed
chore: update styling
1 parent d216c18 commit f68fc68

File tree

2 files changed

+28
-12
lines changed

2 files changed

+28
-12
lines changed

v1/index.html

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@
66
<meta name="theme-color" content="#000000" />
77
<link rel="icon" type="image/svg+xml" href="/src/assets/logo.svg" />
88
<title>Tauri + Solid + Typescript App</title>
9+
<style>
10+
body {
11+
/* Add a nice colorscheme to our page and text */
12+
background-color: #222831;
13+
color: #ececec;
14+
}
15+
</style>
916
</head>
1017

1118
<body>

v2/index.html

Lines changed: 21 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,26 @@
11
<!doctype html>
22
<html lang="en">
3-
<head>
4-
<meta charset="utf-8" />
5-
<meta name="viewport" content="width=device-width, initial-scale=1" />
6-
<meta name="theme-color" content="#000000" />
7-
<link rel="icon" type="image/svg+xml" href="/src/assets/logo.svg" />
8-
<title>Tauri + Solid + Typescript App</title>
9-
</head>
103

11-
<body>
12-
<noscript>You need to enable JavaScript to run this app.</noscript>
13-
<div id="root"></div>
4+
<head>
5+
<meta charset="utf-8" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1" />
7+
<meta name="theme-color" content="#000000" />
8+
<link rel="icon" type="image/svg+xml" href="/src/assets/logo.svg" />
9+
<title>Tauri + Solid + Typescript App</title>
10+
<style>
11+
body {
12+
/* Add a nice colorscheme to our page and text */
13+
background-color: #222831;
14+
color: #ececec;
15+
}
16+
</style>
17+
</head>
18+
19+
<body>
20+
<noscript>You need to enable JavaScript to run this app.</noscript>
21+
<div id="root"></div>
22+
23+
<script src="/src/index.tsx" type="module"></script>
24+
</body>
1425

15-
<script src="/src/index.tsx" type="module"></script>
16-
</body>
1726
</html>

0 commit comments

Comments
 (0)