Skip to content

Commit

Permalink
fix(protocol-designer): fix spacing on starting deck title (#16865)
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 authored Nov 18, 2024
1 parent 8744089 commit 548ed2c
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 548ed2c

Please sign in to comment.