fix(deployment-step): style Back and Next navigation buttons

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-27 14:55:35 +01:00
co-authored by Claude Sonnet 4.6
parent 38fd5683e7
commit c108741324
+3 -1
View File
@@ -87,16 +87,18 @@ export function DeploymentStep() {
</fieldset>
{/* Navigation buttons */}
<div>
<div className="flex gap-3 mt-6">
<button
type="button"
onClick={() => dispatch({ type: 'SET_STEP', payload: 1 })}
className="px-4 py-2 text-sm border border-gray-300 rounded-md hover:bg-gray-50"
>
Back
</button>
<button
type="button"
onClick={() => dispatch({ type: 'SET_STEP', payload: 3 })}
className="px-4 py-2 text-sm bg-blue-600 text-white rounded-md hover:bg-blue-700"
>
Next / Review
</button>