fix: add bottom padding to AI Analyst scroll container to prevent button cutoff
Browse files
frontend/src/components/AIAnalyst.tsx
CHANGED
|
@@ -218,7 +218,7 @@ export default function AIAnalyst({
|
|
| 218 |
</div>
|
| 219 |
</div>
|
| 220 |
|
| 221 |
-
<div style={{ flex: 1, overflowY: 'auto' }}>
|
| 222 |
{activeTab === 'analysis' ? (
|
| 223 |
<>
|
| 224 |
{!insight && !loadingInsight && (
|
|
|
|
| 218 |
</div>
|
| 219 |
</div>
|
| 220 |
|
| 221 |
+
<div style={{ flex: 1, overflowY: 'auto', paddingBottom: '20px' }}>
|
| 222 |
{activeTab === 'analysis' ? (
|
| 223 |
<>
|
| 224 |
{!insight && !loadingInsight && (
|