Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
wilfred committed Jan 31, 2024
1 parent 04f567b commit 7db0d7f
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 7 deletions.
22 changes: 16 additions & 6 deletions src/modules/PublicSale/raffleButton/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -136,18 +136,25 @@ const RaffleButton = ({ className }: any) => {
<Text
fontWeight={'400'}
color={'#fff'}
fontSize={'12px'}
lineHeight={'120%'}
fontSize={'10px'}
lineHeight={'140%'}
mb={'5px'}
style={{
background: '#FFFFFF1A',
padding: '4px 8px',
}}
>
Share more post to increase
<br />
your winning chance
</Text>
<Flex onClick={onShareNow} className={cx(s.learnMoreWrapper)}>
<Text fontWeight={'400'} color={'#000'} fontSize={'14px'}>
Share now
</Text>
<Flex
onClick={onShareNow}
className={cx(s.learnMoreWrapper)}
style={{
justifyContent: 'flex-start',
}}
>
<svg
width="24"
height="24"
Expand All @@ -173,6 +180,9 @@ const RaffleButton = ({ className }: any) => {
</clipPath>
</defs>
</svg>
<Text fontWeight={'400'} color={'#000'} fontSize={'12px'}>
Share now
</Text>
</Flex>
</Flex>
) : (
Expand Down
2 changes: 1 addition & 1 deletion src/modules/PublicSale/raffleButton/styles.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@

.learnMoreWrapper {
background: #ffffff;
padding: 4px 6px 4px 16px;
padding: 4px;
width: fit-content;
color: #000000;
font-size: 14px;
Expand Down

0 comments on commit 7db0d7f

Please sign in to comment.