Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ncdiehl committed Mar 13, 2024
1 parent ce0ba3a commit 7e60694
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 16 deletions.
7 changes: 0 additions & 7 deletions app/src/atoms/InputField/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -217,13 +217,6 @@ function Input(props: InputFieldProps): JSX.Element {
}
`

const StyledInput = styled.input`
margin: ${SPACING.spacing8};
@media ${RESPONSIVENESS.touchscreenMediaQuerySpecs} {
margin-x: ${SPACING.spacing24};
}
`

return (
<Flex flexDirection={DIRECTION_COLUMN} width="100%">
{props.title != null && <Flex css={TITLE_STYLE}>{props.title}</Flex>}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import { useTranslation } from 'react-i18next'
import {
Flex,
DIRECTION_COLUMN,
TYPOGRAPHY,
SPACING,
COLORS,
PrimaryButton,
Expand Down
8 changes: 0 additions & 8 deletions app/src/pages/NameRobot/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,6 @@ import type { FieldError, Resolver } from 'react-hook-form'
import type { UpdatedRobotName } from '@opentrons/api-client'
import type { State, Dispatch } from '../../redux/types'

const INPUT_FIELD_ODD_STYLE = css`
padding-top: ${SPACING.spacing32};
padding-bottom: ${SPACING.spacing32};
font-size: 2.5rem;
line-height: 3.25rem;
text-align: center;
`

interface FormValues {
newRobotName: string
}
Expand Down

0 comments on commit 7e60694

Please sign in to comment.