style
Browse files
src/lib/components/Battle/BattleField.svelte
CHANGED
@@ -255,7 +255,6 @@
|
|
255 |
.player-trainer img {
|
256 |
width: 120px;
|
257 |
height: auto;
|
258 |
-
/* Remove horizontal flip - trainer should face naturally */
|
259 |
}
|
260 |
|
261 |
.player-trainer.slide-out-left {
|
@@ -317,7 +316,6 @@
|
|
317 |
width: 160px;
|
318 |
height: 160px;
|
319 |
position: absolute;
|
320 |
-
bottom: -60px;
|
321 |
right: 20px; /* Align with enemy-piclet-wrapper position */
|
322 |
z-index: 0;
|
323 |
object-fit: cover;
|
@@ -338,7 +336,7 @@
|
|
338 |
.player-piclet-wrapper {
|
339 |
position: absolute;
|
340 |
left: 40px;
|
341 |
-
bottom:
|
342 |
}
|
343 |
|
344 |
.player-image {
|
@@ -346,7 +344,6 @@
|
|
346 |
height: 120px;
|
347 |
object-fit: contain;
|
348 |
display: block;
|
349 |
-
transform: scaleX(-1);
|
350 |
}
|
351 |
|
352 |
.player-platform {
|
|
|
255 |
.player-trainer img {
|
256 |
width: 120px;
|
257 |
height: auto;
|
|
|
258 |
}
|
259 |
|
260 |
.player-trainer.slide-out-left {
|
|
|
316 |
width: 160px;
|
317 |
height: 160px;
|
318 |
position: absolute;
|
|
|
319 |
right: 20px; /* Align with enemy-piclet-wrapper position */
|
320 |
z-index: 0;
|
321 |
object-fit: cover;
|
|
|
336 |
.player-piclet-wrapper {
|
337 |
position: absolute;
|
338 |
left: 40px;
|
339 |
+
bottom: -6;
|
340 |
}
|
341 |
|
342 |
.player-image {
|
|
|
344 |
height: 120px;
|
345 |
object-fit: contain;
|
346 |
display: block;
|
|
|
347 |
}
|
348 |
|
349 |
.player-platform {
|
src/lib/components/Battle/PicletInfo.svelte
CHANGED
@@ -230,6 +230,7 @@
|
|
230 |
|
231 |
.piclet-name {
|
232 |
font-size: 12px;
|
|
|
233 |
}
|
234 |
|
235 |
.level-text {
|
|
|
230 |
|
231 |
.piclet-name {
|
232 |
font-size: 12px;
|
233 |
+
max-width: 87px;
|
234 |
}
|
235 |
|
236 |
.level-text {
|