Skip to content

Commit

Permalink
v3.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
boehlerlukas committed Dec 4, 2020
1 parent 576c03f commit 8f2d968
Show file tree
Hide file tree
Showing 4 changed files with 226 additions and 196 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bugbattle",
"version": "3.0.4",
"version": "3.0.5",
"main": "build/index.js",
"types": "index.d.ts",
"scripts": {
Expand Down
74 changes: 40 additions & 34 deletions public/index.html
Original file line number Diff line number Diff line change
@@ -1,44 +1,50 @@
<!DOCTYPE html>
<html lang="en">

<head>
<title>BugBattle DEMO</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
* {
box-sizing: border-box;
}
body {
background-color: #70B9DA;
margin: 0;
}
.demo-container {
height: 100vh;
width: 100vw;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 40px;
}
.demo-container > div {
font-weight: bold;
margin-bottom: 20px;
color: #333;
font-size: 20px;
line-height: 24px;
}
.demo-container > img {
width: 100%;
max-width: 220px;
height: auto;
}
</style>
<title>BugBattle DEMO</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
* {
box-sizing: border-box;
}

body {
background-color: #70B9DA;
margin: 0;
}

.demo-container {
min-height: 100vh;
width: 100vw;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 40px;
}

.demo-container>div {
font-weight: bold;
margin-bottom: 20px;
color: #333;
font-size: 20px;
line-height: 24px;
}

.demo-container>img {
width: 100%;
max-width: 220px;
height: auto;
}
</style>
</head>

<body>
<div class="demo-container">
<img src="./bugbattlelogo.png" />
</div>
</body>
</html>

</html>
Loading

0 comments on commit 8f2d968

Please sign in to comment.