fix(deployment-step): style Back and Next navigation buttons
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -87,16 +87,18 @@ export function DeploymentStep() {
|
|||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
||||||
{/* Navigation buttons */}
|
{/* Navigation buttons */}
|
||||||
<div>
|
<div className="flex gap-3 mt-6">
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
onClick={() => dispatch({ type: 'SET_STEP', payload: 1 })}
|
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
|
Back
|
||||||
</button>
|
</button>
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
onClick={() => dispatch({ type: 'SET_STEP', payload: 3 })}
|
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
|
Next / Review
|
||||||
</button>
|
</button>
|
||||||
|
|||||||
Reference in New Issue
Block a user