Skip to content

Commit

Permalink
fix horizontal padding issue in nav
Browse files Browse the repository at this point in the history
  • Loading branch information
b-cooper committed Jul 27, 2023
1 parent 42f4c06 commit 8aafeb5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion app/src/organisms/Navigation/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ export function Navigation(props: NavigationProps): JSX.Element {
? POSITION_STATIC
: POSITION_STICKY
}
paddingX={SPACING.spacing40}
top="0"
width="100%"
backgroundColor={COLORS.white}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export function RobotSettingsList(props: RobotSettingsListProps): JSX.Element {
const { lightsEnabled, toggleLights } = useLEDLights(robotName)

return (
<Flex flexDirection={DIRECTION_COLUMN}>
<Flex paddingX={SPACING.spacing40} flexDirection={DIRECTION_COLUMN}>
<Navigation routes={onDeviceDisplayRoutes} />
<Flex flexDirection={DIRECTION_COLUMN} paddingX={SPACING.spacing40}>
<RobotSettingButton
Expand Down

0 comments on commit 8aafeb5

Please sign in to comment.