Skip to content

Commit

Permalink
fix(app, protocol-designer): color migration bug fixes (#14554)
Browse files Browse the repository at this point in the history
  • Loading branch information
ncdiehl11 authored Feb 27, 2024
1 parent 6b9344f commit 384acc4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ const LABWARE_NAME_TITLE_STYLE = css`
`

const LABWARE_NAME_STYLE = css`
color: ${COLORS.grey40};
color: ${COLORS.grey60};
@media ${RESPONSIVENESS.touchscreenMediaQuerySpecs} {
${TYPOGRAPHY.bodyTextBold}
color: ${COLORS.black90};
Expand Down
2 changes: 1 addition & 1 deletion app/src/organisms/LabwarePositionCheck/ResultsSummary.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ const TableHeader = styled('th')`
padding: ${SPACING.spacing4};
`
const TableRow = styled('tr')`
background-color: ${COLORS.grey10};
background-color: ${COLORS.grey20};
`

const TableDatum = styled('td')`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ const EQUIPMENT_OPTION_SELECTED_STYLE = css`
&:hover {
background-color: ${COLORS.blue10};
border: 1px ${BORDERS.styleSolid} ${COLORS.blue50};
box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
}
`

Expand Down

0 comments on commit 384acc4

Please sign in to comment.