diff --git a/src/routes/hud/elements/targethud/HealthProgress.svelte b/src/routes/hud/elements/targethud/HealthProgress.svelte index 6cc25ab..eac0361 100644 --- a/src/routes/hud/elements/targethud/HealthProgress.svelte +++ b/src/routes/hud/elements/targethud/HealthProgress.svelte @@ -23,7 +23,7 @@ bottom: 9px; left: 79.68px; border-radius: 6px; - max-width: 137.91px; + max-width: 156px; background-color: rgba($background-color, 0.2); box-shadow: $primary-shadow; } diff --git a/src/routes/hud/elements/targethud/TargetHud.svelte b/src/routes/hud/elements/targethud/TargetHud.svelte index a871bfa..b483e49 100644 --- a/src/routes/hud/elements/targethud/TargetHud.svelte +++ b/src/routes/hud/elements/targethud/TargetHud.svelte @@ -109,7 +109,7 @@ @import "../../../../colors.scss"; .targethud { - width: 230px; + width: 250px; background-color: rgba($background-color, $opacity); border-radius: 12px; overflow: hidden; @@ -124,7 +124,7 @@ position: absolute; left: 78.18px; top: 9px; - width: 140px; + width: 158px; height: 22px; font-size: 20px; text-shadow: $primary-shadow; @@ -147,7 +147,7 @@ } .stats { - width: 118px; + width: 136px; position: absolute; left: 98px; top: 31px; @@ -165,23 +165,23 @@ .wl { grid-area: b; - font-size: 17px; - padding-top: 1px; + font-size: 15px; + padding-top: 4px; text-align: right; .winning { color: $targethud-winning; - filter: grayscale(90%); + filter: grayscale(50%); } .losing { color: $targethud-losing; - filter: grayscale(90%); + filter: grayscale(50%); } .draw { color: $targethud-draw; - filter: grayscale(90%); + filter: grayscale(50%); } } }