Skip to content

Commit

Permalink
Chore: Update UI (#2016)
Browse files Browse the repository at this point in the history
  • Loading branch information
nguyenhoaidanh authored Jun 27, 2023
1 parent fec1744 commit 2461cd6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/pages/Campaign/CampaignListAndSearch.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ const CampaignListAndSearch = ({
const campaign = campaigns[index]
if (!campaign)
return (
<Row style={style} gap="6px" justify="center" color={theme.subText} fontSize={'12px'}>
<Row style={style} gap="6px" justify="center" color={theme.subText} fontSize={'14px'}>
<Trans>Loading Campaigns ...</Trans>
</Row>
)
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Campaign/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ import { getCampaignIdFromSlug, getSlugUrlCampaign } from 'utils/campaign'

import CampaignContent from './CampaignContent'

const MAXIMUM_ITEMS_PER_REQUEST = 20
const MAXIMUM_ITEMS_PER_REQUEST = 10

const getCampaignStatus = ({ endTime, startTime }: CampaignData) => {
const now = Date.now()
Expand Down
6 changes: 3 additions & 3 deletions src/pages/SwapV3/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ export default function Header({
<RowBetween>
<Text fontSize={12} color={theme.subText}>
{isLimitPage
? t`Buy or sell any token at a specific price`
? t`Buy or sell tokens at customized prices`
: isSwapPage
? t`Buy or sell any token instantly at superior price`
: t`Swap a token directly from one chain to another`}
? t`Instantly buy or sell tokens at superior prices`
: t`Swap between tokens on different chains`}
</Text>
</RowBetween>
</ColumnCenter>
Expand Down

0 comments on commit 2461cd6

Please sign in to comment.