fix: chart container w-full overflow-hidden prevents graph escaping bounds

This commit is contained in:
M1 2026-03-17 07:27:05 +04:00
parent f00c78116b
commit 51baf7c495
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@
<!-- Latency chart --> <!-- Latency chart -->
<div class="bg-gray-900 border border-gray-800 rounded-xl p-4 mb-8"> <div class="bg-gray-900 border border-gray-800 rounded-xl p-4 mb-8">
<h3 class="text-sm text-gray-400 mb-3">Response Time</h3> <h3 class="text-sm text-gray-400 mb-3">Response Time</h3>
<div id="latency-chart" class="h-32"><%~ it.latencyChartSSR(chartPings) %></div> <div id="latency-chart" class="h-32 w-full overflow-hidden"><%~ it.latencyChartSSR(chartPings) %></div>
</div> </div>
<!-- Status bar --> <!-- Status bar -->