Skip to content

Commit

Permalink
small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
donsiamese committed Aug 23, 2023
1 parent d7a840a commit cd51aab
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ function App() {
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
width: isMobile ? '70vw' : '60vw',
marginLeft: isMobile ? '15vw' : '20vw',
width: isMobile ? '70vw' : '50vw',
marginLeft: isMobile ? '15vw' : '25vw',
position: 'relative',
}}
>
Expand Down
8 changes: 8 additions & 0 deletions src/components/Joystick.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,11 @@
left: 20px;
z-index: var(--z-index-joystick);
}

.Joystick > div {
background: var(--pale-yellow) !important;
}

.Joystick > div button {
background: var(--dark-blue) !important;
}
2 changes: 1 addition & 1 deletion src/components/World.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ const World = ({
debug={false}
/>
<IcescreamTruck rotation={[0, 1.3, 0]} scale={1.5} position={[-8.7, 0.03, 33.23]} />
<ObservationTower scale={[0.1, 0.1, 0.1]} position={[-29.01, 0.07, 53.74]} />
<ObservationTower scale={[0.1, 0.1, 0.1]} position={[-29.01, -0.05, 53.74]} />
<Boat
rotation={[0, 0, 0]}
scale={[2.5, 2.5, 2.5]}
Expand Down

0 comments on commit cd51aab

Please sign in to comment.