From dac5ec3307023c484a585d59d41f7a5448899595 Mon Sep 17 00:00:00 2001 From: ADR!AN <111903096+adrianvrj@users.noreply.github.com> Date: Wed, 2 Jul 2025 12:12:46 -0600 Subject: [PATCH] Fix: #1073 refont quests stats --- components/UI/stats/statElement.tsx | 6 +++--- styles/components/stats.module.css | 5 ----- 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/components/UI/stats/statElement.tsx b/components/UI/stats/statElement.tsx index f34df33cf..f487ec16d 100644 --- a/components/UI/stats/statElement.tsx +++ b/components/UI/stats/statElement.tsx @@ -13,10 +13,10 @@ type StatElementProps = { const StatElement: FunctionComponent = ({ name, value }) => { return (
- - {value} +
+ {value} {name} - +
); diff --git a/styles/components/stats.module.css b/styles/components/stats.module.css index 5f16e2150..29e0b9367 100644 --- a/styles/components/stats.module.css +++ b/styles/components/stats.module.css @@ -41,11 +41,6 @@ font-style: normal; font-weight: 400; line-height: 100%; - /* text gradient */ - background: linear-gradient(45deg, var(--primary), var(--tertiary)); - -webkit-background-clip: text; - -webkit-text-fill-color: transparent; - background-clip: text; } .statName {