Skip to content

Commit 29da35e

Browse files
committed
tweak style for gateway list item hover
1 parent 73f309d commit 29da35e

File tree

1 file changed

+12
-4
lines changed
  • src/nextapp/pages/manager/gateways

1 file changed

+12
-4
lines changed

src/nextapp/pages/manager/gateways/list.tsx

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,15 @@ const MyGatewaysPage: React.FC = () => {
292292
onClick={handleNamespaceChange(namespace)}
293293
cursor="pointer"
294294
transition="background-color 0.2s"
295-
_hover={{ backgroundColor: "#f0f0f0" }}
295+
_hover={{
296+
backgroundColor: "#EDEBE9",
297+
h2: {
298+
color: 'bc-blue',
299+
textDecor: 'underline',
300+
},
301+
302+
cursor: 'pointer',
303+
}}
296304
>
297305
<Box>
298306
<Flex alignItems="center">
@@ -302,15 +310,15 @@ const MyGatewaysPage: React.FC = () => {
302310
mr={4}
303311
boxSize={4}
304312
/>
305-
<Text
313+
<Heading
306314
fontSize="md"
307315
fontWeight="bold"
308-
color="bc-blue"
316+
lineHeight={6}
309317
mr={2}
310318
data-testid={`ns-list-activate-link-${namespace.name}`}
311319
>
312320
{namespace.displayName}
313-
</Text>
321+
</Heading>
314322
</Flex>
315323
<Text fontSize="md" pl="33px">
316324
{namespace.name}

0 commit comments

Comments
 (0)