diff --git a/app/routes/analyzer.tsx b/app/routes/analyzer.tsx index 2476201bd..9248db963 100644 --- a/app/routes/analyzer.tsx +++ b/app/routes/analyzer.tsx @@ -389,7 +389,10 @@ export default function BuildAnalyzerPage() { /> )} - + -
- {t("analyzer:trackingSubDefExplanation")} -
{analyzed.stats.damages.length > 0 && ( @@ -684,15 +684,20 @@ function StatCategory({ title, children, containerClassName = "analyzer__stat-collection", + textBelow, }: { title: string; children: React.ReactNode; containerClassName?: string; + textBelow?: string; }) { return (
{title}
{children}
+ {textBelow && ( +
{textBelow}
+ )}
); } diff --git a/app/styles/analyzer.css b/app/styles/analyzer.css index aebb7e321..2cfab5c31 100644 --- a/app/styles/analyzer.css +++ b/app/styles/analyzer.css @@ -167,7 +167,7 @@ .analyzer__stat-category-explanation { color: var(--text-lighter); font-size: var(--fonts-xxs); - grid-column: 1 / 4; + margin-block-start: var(--s-3); } .analyzer__patch {