fix(layout): remove all height constraints to allow natural content flow

SUMMARY:
Removed all max-height and overflow constraints that were cutting off content.
This allows both buttons to display naturally without scrolling or clipping.

CHANGES:
- Removed max-h-[600px]
- Removed overflow-y-auto
- Container now expands to fit all content naturally

This is the simplest solution - no height constraints, natural flow.

🤖 Generated with Claude Code (https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
TheFlow 2025-10-20 08:56:11 +13:00
parent c7891c2bd7
commit 546faf0887

View file

@ -372,12 +372,12 @@
<div class="grid grid-cols-1 lg:grid-cols-2 gap-8">
<!-- Context Pressure Monitor Visualization -->
<div class="bg-gray-50 rounded-xl shadow-lg p-6 border border-gray-200 max-h-[600px] overflow-y-auto">
<div class="bg-gray-50 rounded-xl shadow-lg p-6 border border-gray-200">
<div id="pressure-chart" class="w-full"></div>
</div>
<!-- Framework Activity Timeline -->
<div class="bg-gray-50 rounded-xl shadow-lg p-6 border border-gray-200 max-h-[600px] overflow-y-auto">
<div class="bg-gray-50 rounded-xl shadow-lg p-6 border border-gray-200">
<div id="activity-timeline" class="w-full"></div>
</div>
</div>