Skip to content

Commit

Permalink
use library versio 0.7.5
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshikiohshima committed Aug 30, 2023
1 parent 6b4c5af commit bb47c55
Show file tree
Hide file tree
Showing 29 changed files with 2,819 additions and 690 deletions.
2 changes: 1 addition & 1 deletion assets/css/joystick.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#joystick {
position: fixed;
position: absolute;
left: 50%;
bottom: 50px;
-ms-transform: translate(-50%, 0%);
Expand Down
12 changes: 10 additions & 2 deletions assets/css/microverse.css
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,14 @@ body.tilt > iframe {
/* TODO Solve this in HTML */
}

#microverse {
position: relative;
/* position" relative is important as it makes the control buttons inside laid out accordingly. */
width: 100%;
height: 100%;
touch-action: none;
}

.info-text {
color: #fff;
z-index: 200;
Expand Down Expand Up @@ -348,7 +356,7 @@ body.tilt > iframe {
}

.btn-ui {
position: fixed;
position: absolute;
background-color: rgba(0, 0, 0, 0.5);
z-index: 200;
border-radius: 50%;
Expand Down Expand Up @@ -385,7 +393,7 @@ body.tilt > iframe {
align-items: center;
flex-direction: column;

position: fixed;
position: absolute;
width: 0px;
height: 50px;

Expand Down
Loading

0 comments on commit bb47c55

Please sign in to comment.