Skip to content

Commit 4024049

Browse files
committed
Fix mascot positioning
1 parent cd63415 commit 4024049

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

frontend/src/index.css

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,20 +126,24 @@ code {
126126

127127
.character-container {
128128
position: fixed;
129+
width: 100%;
130+
max-width: 600px;
131+
left: 50%;
132+
transform: translate(-50%, 0);
129133
}
130134

131135
.character-box {
132136
width:175px;
133137
height:175px;
134138
position: relative;
135-
bottom: 65px;
136-
left: 200px;
139+
bottom: 50px;
140+
left: -80px;
137141
}
138142

139143
.character-box-right {
140144
width:175px;
141145
height:175px;
142146
position: relative;
143147
bottom: 65px;
144-
left: 800px;
148+
left: 520px;
145149
}

0 commit comments

Comments
 (0)