From 6cabedb269fd9018f48ce480763e08d726e92f29 Mon Sep 17 00:00:00 2001 From: Kurdistan Tech Ministry Date: Tue, 17 Feb 2026 16:50:32 +0300 Subject: [PATCH] fix: reduce hero stat card font size to prevent text overflow --- web/src/components/HeroSection.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/web/src/components/HeroSection.tsx b/web/src/components/HeroSection.tsx index 1d33e9ed..04e8ea8c 100644 --- a/web/src/components/HeroSection.tsx +++ b/web/src/components/HeroSection.tsx @@ -131,19 +131,19 @@ const HeroSection: React.FC = () => {
-
{stats.activeProposals}
+
{stats.activeProposals}
{t('hero.stats.activeProposals', 'Active Proposals')}
-
{stats.totalVoters.toLocaleString()}
+
{stats.totalVoters.toLocaleString()}
{t('hero.stats.totalVoters', 'Total Voters')}
-
{stats.tokensStaked}
+
{stats.tokensStaked}
{t('hero.stats.tokensStaked', 'Tokens Staked')}
-
{stats.trustScore !== null ? stats.trustScore : t('hero.stats.loginToSee', 'Login')}
+
{stats.trustScore !== null ? stats.trustScore : t('hero.stats.loginToSee', 'Login')}
{t('hero.stats.trustScore', 'Trust Score')}