Skip to content

Commit

Permalink
fix(app): add white translucent background to module info to make tex…
Browse files Browse the repository at this point in the history
…t pop (#14456)

fix RQA-2034
  • Loading branch information
smb2268 authored Feb 8, 2024
1 parent 8dc44b0 commit 929186f
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions app/src/organisms/Devices/ModuleInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ import {
getModuleDisplayName,
getModuleDef2,
MAGNETIC_BLOCK_V1,
THERMOCYCLER_MODULE_TYPE,
} from '@opentrons/shared-data'

import { StyledText } from '../../atoms/text'
Expand Down Expand Up @@ -61,10 +60,7 @@ export const ModuleInfo = (props: ModuleInfoProps): JSX.Element => {
width={labwareInterfaceXDimension ?? xDimension}
flexProps={{
padding: SPACING.spacing16,
backgroundColor:
moduleDef.moduleType === THERMOCYCLER_MODULE_TYPE
? COLORS.white
: COLORS.transparent,
backgroundColor: `${COLORS.white}${COLORS.opacity90HexCode}`,
}}
>
<Flex
Expand Down

0 comments on commit 929186f

Please sign in to comment.