Skip to content

Commit

Permalink
fix: add divider to points section
Browse files Browse the repository at this point in the history
  • Loading branch information
schmanu committed Jun 18, 2024
1 parent 09c2a1b commit 544e775
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/components/Points/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { GLOBAL_CAMPAIGN_IDS } from '@/config/constants'
import { useCampaignInfo, useCampaignPage } from '@/hooks/useCampaigns'
import { useChainId } from '@/hooks/useChainId'
import { Grid, Typography, Stack, Box, SvgIcon } from '@mui/material'
import { Grid, Typography, Stack, Box, SvgIcon, Divider } from '@mui/material'
import { useEffect, useMemo, useState } from 'react'
import { ExternalLink } from '../ExternalLink'
import PaperContainer from '../PaperContainer'
Expand Down Expand Up @@ -73,7 +73,8 @@ const Points = () => {
</Typography>
</Stack>
</Stack>
<Stack direction={{ lg: 'row', md: 'column' }} spacing={4} mt={9}>
<Divider sx={{ mt: 4 }} />
<Stack direction={{ lg: 'row', md: 'column' }} spacing={4} mt={5}>
<CampaignTabs onChange={onTabChange} selectedTabIdx={selectedTab} />
<Box width="100%">
<Stack
Expand Down

0 comments on commit 544e775

Please sign in to comment.