diff --git a/app/src/organisms/Devices/ProtocolRun/SetupModuleAndDeck/LocationConflictModal.tsx b/app/src/organisms/Devices/ProtocolRun/SetupModuleAndDeck/LocationConflictModal.tsx index 8cf4a21175c..c5164725579 100644 --- a/app/src/organisms/Devices/ProtocolRun/SetupModuleAndDeck/LocationConflictModal.tsx +++ b/app/src/organisms/Devices/ProtocolRun/SetupModuleAndDeck/LocationConflictModal.tsx @@ -16,7 +16,6 @@ import { COLORS, JUSTIFY_END, ALIGN_CENTER, - Box, JUSTIFY_SPACE_BETWEEN, BORDERS, } from '@opentrons/components' @@ -290,28 +289,24 @@ export const LocationConflictModal = ( gridGap={SPACING.spacing20} alignItems={ALIGN_CENTER} > - - - {t('protocol_specifies')} - - - + + {t('protocol_specifies')} + + {protocolSpecifiesDisplayName} - - - {t('currently_configured')} - - - + + {t('currently_configured')} + + {isThermocycler ? currentThermocyclerFixtureDisplayName : currentFixtureDisplayName} diff --git a/components/src/ui-style-constants/typography.ts b/components/src/ui-style-constants/typography.ts index de315736f6d..cc488a7bea2 100644 --- a/components/src/ui-style-constants/typography.ts +++ b/components/src/ui-style-constants/typography.ts @@ -125,10 +125,10 @@ export const linkPSemiBold = css` font-size: ${fontSizeP}; font-weight: ${fontWeightSemiBold}; line-height: ${lineHeight20}; - color: ${COLORS.blue55}; + color: ${COLORS.blue50}; &:hover { - color: ${COLORS.grey50}; + color: ${COLORS.blue55}; } `