Skip to content

Commit

Permalink
fix padding for legacy tracks section
Browse files Browse the repository at this point in the history
  • Loading branch information
AG-Guardian committed Oct 25, 2024
1 parent b94ee81 commit a3ffa60
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export function SpecialTracks() {
<ExperienceTrack />
</Box>
<SectionHeading label={"Legacy Tracks"} />
<Stack spacing={2} px={2} sx={{ overflowX: "auto" }}>
<Stack spacing={2} px={2} sx={{ overflowX: "auto", pb: 1 }}>
{Object.keys(specialTracksRules).map((specialTrackKey) => {
const specialTrackValue = getSpecialTrackValue(specialTrackKey);
return (
Expand Down

0 comments on commit a3ffa60

Please sign in to comment.