Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(app): update disabled style of ProtocolSetupStep description #15115

Merged
merged 1 commit into from
May 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix(app): update disabled style of ProtocolSetupStep description
Set new description text of ProtocolSetupStep to grey50 if disabled
  • Loading branch information
ncdiehl11 committed May 7, 2024
commit 163cf3d3c65602eb712fd31eac213426dd22f55c
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
Loading