diff --git a/hyperglass/ui/components/path/path.tsx b/hyperglass/ui/components/path/path.tsx
index 2b94267..be830b5 100644
--- a/hyperglass/ui/components/path/path.tsx
+++ b/hyperglass/ui/components/path/path.tsx
@@ -8,7 +8,7 @@ import {
Skeleton,
ModalCloseButton,
} from '@chakra-ui/react';
-import { useColorValue } from '~/context';
+import { useColorValue, useBreakpointValue } from '~/context';
import { useLGState, useLGMethods } from '~/hooks';
import { PathButton } from './button';
import { Chart } from './chart';
@@ -22,14 +22,18 @@ export const Path = (props: TPath) => {
const { isOpen, onClose, onOpen } = useDisclosure();
const response = getResponse(device);
const output = response?.output as TStructuredResponse;
- const bg = useColorValue('whiteSolid.50', 'blackSolid.900');
-
+ const bg = useColorValue('light.50', 'dark.900');
+ const centered = useBreakpointValue({ base: false, lg: true }) ?? true;
return (
<>
-
+
-
+
{`Path to ${displayTarget.value}`}