Skip to content

Commit

Permalink
fix(protocol-designer): fix spacing on starting deck title
Browse files Browse the repository at this point in the history
Fix grid gap between title and materials list link on protocol starting deck at ProtocolOverview

Closes RQA-3382
  • Loading branch information
ncdiehl11 committed Nov 18, 2024
1 parent 8744089 commit 6cf0ea8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export function StartingDeck({
return (
<>
<Flex justifyContent={JUSTIFY_SPACE_BETWEEN} alignItems={ALIGN_CENTER}>
<Flex gridGap="1.875rem" alignItems={ALIGN_CENTER}>
<Flex gridGap={SPACING.spacing8} alignItems={ALIGN_CENTER}>
<StyledText desktopStyle="headingSmallBold">
{t('starting_deck')}
</StyledText>
Expand Down

0 comments on commit 6cf0ea8

Please sign in to comment.