Update character styling in OverviewView: Adjust character positioning and dimensions by changing the bottom offset to 10px and increasing width and height to 55%. This enhances the visual representation of characters in the user interface.

This commit is contained in:
Torsten Schulz (local)
2026-02-02 09:03:33 +01:00
parent 101050ce58
commit 0d32c5b4b3

View File

@@ -431,11 +431,11 @@ export default {
.character-foreground { .character-foreground {
position: absolute; position: absolute;
bottom: 5%; bottom: 10px;
left: 50%; left: 50%;
transform: translateX(-50%); transform: translateX(-50%);
width: 33%; width: 55%;
height: 33%; height: 55%;
z-index: 2; z-index: 2;
} }