Skip to content

Commit

Permalink
Fix: receipt modal transparent (#2609)
Browse files Browse the repository at this point in the history
## Explanation of the solution
* add missing background color
![Uploading image.png…]()


## Instructions on making this work

- run `yarn` or `yarn install` to install npm dependencies
- run `yarn run test --watchAll` to verify all tests still pass
- (optional) run `yarn run build` to verify the build passes
- run `yarn start` to start the webapp
-

## UI changes for review

When major UI changes are introduced with a PR, please include links to URLS to compare or screenshots demonstrating the difference and notify on design changes
  • Loading branch information
ap-justin authored Dec 22, 2023
1 parent 90f7a66 commit 3583d85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/KYC/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export default function KYC(props: Props) {
return (
<FormProvider {...methods}>
<Modal
className={`${formStyle} fixed-center z-20 rounded-md p-6 w-full max-w-xl max-h-[85vh] overflow-y-auto scroller shadow-lg border-none dark:border-2 dark:border-bluegray`}
className={`${formStyle} bg-white fixed-center z-20 rounded-md p-6 w-full max-w-xl max-h-[85vh] overflow-y-auto scroller shadow-lg border-none dark:border-2 dark:border-bluegray`}
>
<Form {...props} />
</Modal>
Expand Down

0 comments on commit 3583d85

Please sign in to comment.