fix(tradein/v2): аналитика — 2 графика в ряд, чтобы Цена×срок влезала на экран (#2480)
All checks were successful
Deploy Trade-In / changes (push) Successful in 10s
Deploy Trade-In / test (push) Has been skipped
Deploy Trade-In / build-browser (push) Has been skipped
Deploy Trade-In / deploy (push) Successful in 44s
Deploy Trade-In / build-backend (push) Has been skipped
Deploy Trade-In / build-frontend (push) Successful in 1m55s
All checks were successful
Deploy Trade-In / changes (push) Successful in 10s
Deploy Trade-In / test (push) Has been skipped
Deploy Trade-In / build-browser (push) Has been skipped
Deploy Trade-In / deploy (push) Successful in 44s
Deploy Trade-In / build-backend (push) Has been skipped
Deploy Trade-In / build-frontend (push) Successful in 1m55s
This commit is contained in:
parent
4f205bd7da
commit
a88e755403
1 changed files with 335 additions and 323 deletions
|
|
@ -327,6 +327,17 @@ export default function AnalyticsView({
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
{/* история цен + цена × срок продажи — side by side so both fit the
|
||||||
|
fixed-height v2 artboard panel without scrolling (reclaims ~194px
|
||||||
|
of vertical space vs. stacking; chart heights unchanged). */}
|
||||||
|
<div
|
||||||
|
style={{
|
||||||
|
display: "grid",
|
||||||
|
gridTemplateColumns: "1fr 1fr",
|
||||||
|
gap: 16,
|
||||||
|
alignItems: "start",
|
||||||
|
}}
|
||||||
|
>
|
||||||
{/* история цен */}
|
{/* история цен */}
|
||||||
<div style={{ position: "relative", ...cardStyle }}>
|
<div style={{ position: "relative", ...cardStyle }}>
|
||||||
<div
|
<div
|
||||||
|
|
@ -683,5 +694,6 @@ export default function AnalyticsView({
|
||||||
</svg>
|
</svg>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue