Skip to content

Commit

Permalink
style theme and background
Browse files Browse the repository at this point in the history
  • Loading branch information
da-in committed Jan 14, 2024
1 parent e8e0f96 commit f486c24
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="theme-color" content="#8ACFA7" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + Vue + TS</title>
<title>찌오 게임</title>
</head>
<body>
<div id="app"></div>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/play/PlayPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ onMounted(()=>{
}
});
const ground = Bodies.rectangle(width/2, height-48, width, 96, { isStatic: true, render: {fillStyle: '#FCBF31', lineWidth:4, strokeStyle:'#000000'}});
const ground = Bodies.rectangle(width/2, height-48, width, 96, { isStatic: true, render: {fillStyle: '#81685A'}});
const left = Bodies.rectangle(0, height/2, 1, height, {
isStatic: true,
render: {fillStyle: '#FFFFFF'}
Expand Down
1 change: 1 addition & 0 deletions src/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ body {
height: 100%;
min-width: 320px;
min-height: 100vh;
background-color: #8ACFA7;
}

#app {
Expand Down

0 comments on commit f486c24

Please sign in to comment.