Skip to content

Commit

Permalink
removed extra spacing between Transit Provider and Producer URL
Browse files Browse the repository at this point in the history
  • Loading branch information
qcdyx committed Aug 20, 2024
1 parent ea2c161 commit 77d68f6
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions web-app/src/app/screens/Feed/FeedSummary.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,17 @@ const boxElementStyle: SxProps = {
mb: 1,
};

const boxElementStyleTransitProvider: SxProps = {
width: '100%',
mt: 2,
borderBottom: 'none',
};

const boxElementStyleProducerURL: SxProps = {
width: '100%',
mb: 1,
};

const ResponsiveListItem = styled('li')(({ theme }) => ({
width: '100%',
margin: '5px 0',
Expand Down Expand Up @@ -79,7 +90,7 @@ export default function FeedSummary({
{getLocationName(feed?.locations)}
</Typography>
</Box>
<Box>
<Box sx={boxElementStyleTransitProvider}>
<Typography
variant='subtitle1'
gutterBottom
Expand Down Expand Up @@ -130,7 +141,7 @@ export default function FeedSummary({
)}
</Box>
</Box>
<Box>
<Box sx={boxElementStyleProducerURL}>
<Typography
variant='subtitle1'
gutterBottom
Expand Down

0 comments on commit 77d68f6

Please sign in to comment.