Skip to content

Commit

Permalink
Fix mascot positioning
Browse files Browse the repository at this point in the history
  • Loading branch information
remotesynth committed Nov 22, 2024
1 parent cd63415 commit 4024049
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions frontend/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -126,20 +126,24 @@ code {

.character-container {
position: fixed;
width: 100%;
max-width: 600px;
left: 50%;
transform: translate(-50%, 0);
}

.character-box {
width:175px;
height:175px;
position: relative;
bottom: 65px;
left: 200px;
bottom: 50px;
left: -80px;
}

.character-box-right {
width:175px;
height:175px;
position: relative;
bottom: 65px;
left: 800px;
left: 520px;
}

0 comments on commit 4024049

Please sign in to comment.