Fixed the Add Scenario button

This commit is contained in:
Josh 2025-04-29 15:27:55 +00:00
parent 1330ccc366
commit a9545abc0a

View File

@ -135,7 +135,21 @@ export default function MultiScenarioView() {
/>
))}
<button onClick={handleAddScenario}>+ Add Scenario</button>
<div style={{ alignSelf: 'flex-start' }}>
<button
onClick={handleAddScenario}
style={{
padding: '0.5rem 1rem',
height: 'auto',
backgroundColor: '#76b900', // or whatever
border: 'none',
borderRadius: '4px',
cursor: 'pointer'
}}
>
+ Add Scenario
</button>
</div>
</div>
);
}