Skip to content

Commit

Permalink
Merge branch 'main' of github.com:TrustlessComputer/bvm-website
Browse files Browse the repository at this point in the history
  • Loading branch information
wilfred committed Jan 31, 2024
2 parents 7db0d7f + deb66fe commit 60ce3d3
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/modules/PublicSale/BuyForm/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -321,9 +321,9 @@ const PrivateSaleForm = ({ vcInfo }: { vcInfo?: VCInfo }) => {
lineHeight={1}
fontWeight={400}
color={'#000'}
_hover={{
color: '#FA4E0E',
}}
// _hover={{
// color: '#FA4E0E',
// }}
>
<NumberScale
label={''}
Expand Down
9 changes: 9 additions & 0 deletions src/modules/PublicSale/BuyForm/styles.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,15 @@

.backer {
cursor: pointer;

&:hover {
p:last-child {
> div {
color: #FA4E0E;
text-decoration: underline;
}
}
}
}

:global {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const NakaCountDown = React.memo(() => {
</Text>
<Flex className={styles.item_countdown}>
<SvgInset svgUrl={`${CDN_URL_ICONS}/ic-fire.svg`} size={16} />
<Countdown expiredTime={dayjs.utc(bestPNL.to_time, 'YYYY-MM-DD HH:mm:ss').toString()} hideIcon={true} isHideSecond={false} hideZeroHour={true} />
<Countdown expiredTime={dayjs.utc(bestPNL.to_time, 'YYYY-MM-DD HH:mm:ss').toString()} hideIcon={true} isHideSecond={true} />
</Flex>
</Flex>
{!!bestPNL?.winner ? (
Expand All @@ -40,7 +40,7 @@ const NakaCountDown = React.memo(() => {
) : (
<Flex className={styles.item}>
<Text className={styles.item_title}>
Top PNL
Top 1 PNL
</Text>
<Text className={styles.item_name}>
Be the first!!!
Expand Down

0 comments on commit 60ce3d3

Please sign in to comment.