Skip to content

Commit 5f41463

Browse files
committed
1 parent bf1bd58 commit 5f41463

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

src/components/map-projects/MapProject.jsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1561,7 +1561,8 @@ const MapProject = () => {
15611561
</FormControl>
15621562
<FormControlLabel
15631563
sx={{
1564-
marginLeft: '10px',
1564+
marginLeft: '4px',
1565+
marginRight: '8px',
15651566
'.MuiFormControlLabel-label': {fontSize: '0.8125rem'}
15661567
}}
15671568
control={<Switch disabled={!showMatchSummary || selectedRowStatus === 'unmapped'} size="small" checked={selectedMatchBucket === 'very_high'} onChange={() => onMatchTypeChange('very_high')} />}

src/components/map-projects/ScoreBucketButton.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const ScoreBucketButton = ({onClick, onSort, sortBy, selected, recommended, avai
3333
const disabled = !recommended && !available && !unranked
3434
const selectedCount = selected === 'recommended' ? recommended : (selected === 'available' ? available : unranked)
3535
return (
36-
<ButtonGroup size='small' variant='text'>
36+
<ButtonGroup size='small' variant='text' sx={{marginRight: '8px'}}>
3737
<BucketButton id='recommended' selected={selected} count={recommended} onClick={onClick} />
3838
<BucketButton id='available' selected={selected} count={available} onClick={onClick} />
3939
<BucketButton id='unranked' selected={selected} count={unranked} onClick={onClick} />

0 commit comments

Comments
 (0)