Skip to content

Commit

Permalink
Align items center on select credentials popup
Browse files Browse the repository at this point in the history
  • Loading branch information
gkatrakazas committed Oct 17, 2024
1 parent f91c2a0 commit db13f91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Popups/SelectCredentialsPopup.js
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ function SelectCredentialsPopup({ isOpen, setIsOpen, setSelectionMap, conformant
)
}
</div>
<div className={`flex flex-wrap justify-center flex flex-row justify-center overflow-y-auto bg-gray-50 dark:bg-gray-800 shadow-md rounded-md custom-scrollbar mb-2 ${screenType === 'mobile' ? 'h-full' : 'max-h-[40vh]'}`}>
<div className={`flex flex-wrap justify-center flex flex-row justify-center overflow-y-auto bg-gray-50 items-center dark:bg-gray-800 shadow-md rounded-md custom-scrollbar mb-2 ${screenType === 'mobile' ? 'h-full' : 'max-h-[40vh]'}`}>
{vcEntities.map(vcEntity => (
<>
<div key={vcEntity.credentialIdentifier} className="m-3 flex flex-col items-center">
Expand Down

0 comments on commit db13f91

Please sign in to comment.