Skip to content

Commit

Permalink
Avoid action name card content shift when selected (#549)
Browse files Browse the repository at this point in the history
  • Loading branch information
microbit-robert authored Nov 28, 2024
1 parent ed3e168 commit ff7c692
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/ActionNameCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ const ActionNameCard = ({
p={2}
h="120px"
display="flex"
borderColor="brand.500"
borderWidth={selected ? 1 : 0}
borderColor={selected ? "brand.500" : "transparent"}
borderWidth={1}
onClick={onSelectRow}
position="relative"
className={tourElClassname.dataSamplesActionCard}
Expand Down

0 comments on commit ff7c692

Please sign in to comment.