Skip to content

Commit 8f2d968

Browse files
committed
v3.0.5
1 parent 576c03f commit 8f2d968

File tree

4 files changed

+226
-196
lines changed

4 files changed

+226
-196
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bugbattle",
3-
"version": "3.0.4",
3+
"version": "3.0.5",
44
"main": "build/index.js",
55
"types": "index.d.ts",
66
"scripts": {

public/index.html

Lines changed: 40 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,50 @@
11
<!DOCTYPE html>
22
<html lang="en">
3+
34
<head>
4-
<title>BugBattle DEMO</title>
5-
<meta charset="UTF-8">
6-
<meta name="viewport" content="width=device-width, initial-scale=1">
7-
<style>
8-
* {
9-
box-sizing: border-box;
10-
}
11-
body {
12-
background-color: #70B9DA;
13-
margin: 0;
14-
}
15-
.demo-container {
16-
height: 100vh;
17-
width: 100vw;
18-
display: flex;
19-
flex-direction: column;
20-
justify-content: center;
21-
align-items: center;
22-
padding: 40px;
23-
}
24-
.demo-container > div {
25-
font-weight: bold;
26-
margin-bottom: 20px;
27-
color: #333;
28-
font-size: 20px;
29-
line-height: 24px;
30-
}
31-
.demo-container > img {
32-
width: 100%;
33-
max-width: 220px;
34-
height: auto;
35-
}
36-
</style>
5+
<title>BugBattle DEMO</title>
6+
<meta charset="UTF-8">
7+
<meta name="viewport" content="width=device-width, initial-scale=1">
8+
<style>
9+
* {
10+
box-sizing: border-box;
11+
}
12+
13+
body {
14+
background-color: #70B9DA;
15+
margin: 0;
16+
}
17+
18+
.demo-container {
19+
min-height: 100vh;
20+
width: 100vw;
21+
display: flex;
22+
flex-direction: column;
23+
justify-content: center;
24+
align-items: center;
25+
padding: 40px;
26+
}
27+
28+
.demo-container>div {
29+
font-weight: bold;
30+
margin-bottom: 20px;
31+
color: #333;
32+
font-size: 20px;
33+
line-height: 24px;
34+
}
35+
36+
.demo-container>img {
37+
width: 100%;
38+
max-width: 220px;
39+
height: auto;
40+
}
41+
</style>
3742
</head>
43+
3844
<body>
3945
<div class="demo-container">
4046
<img src="./bugbattlelogo.png" />
4147
</div>
4248
</body>
43-
</html>
4449

50+
</html>

0 commit comments

Comments
 (0)