diff --git a/components/UI/stats/statElement.tsx b/components/UI/stats/statElement.tsx index f34df33c..f487ec16 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 5f16e215..29e0b936 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 {