diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 429dac24e..ac9607135 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - Button spacing on application page +- Label spacing between view resume and upload resume while editing application - Checkmark not aligning with checkbox on smaller screens - Checkmark appearing on dropdown lists due to z-index - Job interest dropdown colours diff --git a/src/features/Application/ResumeComponent.tsx b/src/features/Application/ResumeComponent.tsx index 109817da3..21d5a53a6 100644 --- a/src/features/Application/ResumeComponent.tsx +++ b/src/features/Application/ResumeComponent.tsx @@ -19,10 +19,12 @@ const ResumeComponent: React.StatelessComponent = ( return ( {props.mode === ManageApplicationModes.EDIT && viewResume} - + diff --git a/src/shared/Elements/Button.tsx b/src/shared/Elements/Button.tsx index 3059ed1fd..bd2c2e85f 100644 --- a/src/shared/Elements/Button.tsx +++ b/src/shared/Elements/Button.tsx @@ -39,7 +39,9 @@ export const Button = styled.button` font-size: 16px; font-weight: 400; text-transform: capitalize; - height: 40px; + min-height: 40px; + max-height: 60px; + /* Default border radius to values befiting a call to action button - these values will be reset later if button is not a call to action */