Skip to content

Commit

Permalink
fix(app): update disabled style of ProtocolSetupStep description (#15115
Browse files Browse the repository at this point in the history
)
  • Loading branch information
ncdiehl11 authored May 7, 2024
1 parent f6bd225 commit 16b94b5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion app/src/pages/ProtocolSetup/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,11 @@ export function ProtocolSetupStep({
>
{title}
</StyledText>
<StyledText as="h4" color={COLORS.grey60} maxWidth="35rem">
<StyledText
as="h4"
color={disabled ? COLORS.grey50 : COLORS.grey60}
maxWidth="35rem"
>
{description}
</StyledText>
</Flex>
Expand Down

0 comments on commit 16b94b5

Please sign in to comment.