Skip to content

Commit

Permalink
some ui fixes in existing user
Browse files Browse the repository at this point in the history
  • Loading branch information
nikos-koukis committed Oct 19, 2023
1 parent 18a71a5 commit 447647b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/views/Home/components/ExistingUser/ExistingUser.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ function ExistingUser({ address, email, secretWords, userGid }: { address: strin
</VStack>

{isWordsVisible && !showError && (
<Grid templateColumns="repeat(6, 1fr)" gap={6}>
<Grid templateColumns={{base: 'repeat(2, 1fr)', md: 'repeat(4, 1fr)'}}>
{secretWords.map((word, index) => (
<Text key={index} as="span" border="1px solid black" padding="1" m={1}>
{decrypt(word, encryptionKey)}
Expand All @@ -231,11 +231,11 @@ function ExistingUser({ address, email, secretWords, userGid }: { address: strin
<Modal isOpen={isPinModalOpen} onClose={() => setPinModalOpen(false)} isCentered>
<ModalOverlay />
<ModalContent
bg="transparent" // Set background to transparent
w="30%" // Set the width to 30% of the screen
borderWidth="2px" // Add border for visibility
borderColor="teal.500" // Customize the border color
borderRadius="15px" // Add border radius
bg="transparent"
w="90%"
borderWidth="2px"
borderColor="teal.500"
borderRadius="15px"
style={{
backgroundImage: "linear-gradient(45deg, #85FFBD 0%, #586f2d 100%)",
}}
Expand Down

0 comments on commit 447647b

Please sign in to comment.