Merge tag '1.14.5_cleaned'

project was cleaned
This commit is contained in:
2026-04-23 11:47:44 +03:00
5758 changed files with 2046069 additions and 16179 deletions

View File

@@ -12,12 +12,12 @@ export default function StatCard({ label, value, icon: Icon }: StatCardProps) {
<div className="flex justify-between items-center gap-2 p-3 lg:p-4 xl:p-5 lg:p-6 xl:p-8.5 bg-surface/70 border border-slate-800/50 rounded-2xl shadow-sm transition-all hover:bg-surface" role="status">
<div className="flex items-center gap-2.5 min-w-0">
{Icon && <Icon className="w-5 h-5 text-primary flex-shrink-0" aria-hidden="true" />}
<span className="text-base md:text-lg lg:text-xl xl:text-2xl lg:text-3xl xl:text-4xl text-secondary font-semibold truncate">
<span className="text-base md:text-lg text-secondary font-normal truncate">
{label}
</span>
</div>
<span className="text-2xl md:text-3xl lg:text-4xl xl:text-5xl font-black text-white whitespace-nowrap tabular-nums">
<span className="text-2xl md:text-3xl font-normal text-white whitespace-nowrap tabular-nums">
{value}
</span>
</div>