Skip to content

Commit

Permalink
Merge pull request #2 from cupton15/dev
Browse files Browse the repository at this point in the history
fixing styling and crash on Safari
  • Loading branch information
cupton15 authored Jun 4, 2021
2 parents ee32442 + 70fcc1e commit a4b5656
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "reality-check",
"version": "1.0.0",
"version": "1.0.1",
"private": true,
"dependencies": {
"@craco/craco": "^6.1.2",
Expand Down
2 changes: 1 addition & 1 deletion src/components/salary check form/SalaryCheckForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export default function SalaryCheckForm({ onSubmit }: FormProps): JSX.Element {
return (
<form
onSubmit={submitHandler}
className="flex flex-col w-screen md:w-1/2 p-5 gap-y-8 max-w-2xl text-gray-400 "
className="flex flex-col w-screen md:w-1/2 p-5 space-y-8 max-w-2xl text-gray-400 "
>
<div className="relative focus-within:text-gray-600 ">
<label htmlFor="salary">
Expand Down
1 change: 1 addition & 0 deletions src/components/salary results/median text/MedianText.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ export default function MedianText({
style: 'currency',
currency: 'GBP',
maximumFractionDigits: 0,
minimumFractionDigits: 0,
}).format(medianSalary)}
</p>
);
Expand Down

0 comments on commit a4b5656

Please sign in to comment.