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 {
position: absolute;
bottom: 5%;
bottom: 10px;
left: 50%;
transform: translateX(-50%);
width: 33%;
height: 33%;
width: 55%;
height: 55%;
z-index: 2;
}