Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MOSIP-32672: Alignment fix #296

Merged
merged 1 commit into from
May 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pmp-reactjs-ui/src/pages/UploadCertificate.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ function UploadCertificate({ closePopup, partnerData }) {
<div className="fixed inset-0 flex items-center justify-center bg-black bg-opacity-50 z-50">
<div className={`bg-white md:w-[400px] w-[60%] mx-auto ${partnerData.isCertificateAvailable ? 'h-[520px]' : 'h-[500px]'} rounded-lg shadow-lg mt-5`}>
{!dataLoaded && (
<div className="flex items-center justify-center h-4/5">
<div className="flex items-center justify-center h-full">

<div role="status" className="flex items-center">
<svg aria-hidden="true" class="w-8 h-8 text-gray-200 animate-spin fill-blue-600" viewBox="0 0 100 101" fill="none" xmlns="http://www.w3.org/2000/svg">
Expand Down Expand Up @@ -213,7 +213,7 @@ function UploadCertificate({ closePopup, partnerData }) {
></circle>
</svg>
<h5 className="text-gray-800 text-sm">
We're uploading your certificate...
Selecting the file...
</h5>
<p className="text-sm font-semibold text-blue-700" onClick={cancelUpload}>
Cancel
Expand Down
Loading