Skip to content

Commit

Permalink
Merge pull request #88 from OCA-UFCG/fix/change_cursor_style_maps_and…
Browse files Browse the repository at this point in the history
…_visu

fix: changing the cursor style (hover) in maps & visu
  • Loading branch information
LazaroQueiroz authored Sep 27, 2024
2 parents 53d06e4 + 1236653 commit 26ab023
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/MapsSection/MapsSection.styles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export const TagButton = styled.span<{ active?: string }>`
box-sizing: border-box;
background-color: #ffffff95;
cursor: ${({ active }) => (active === "true" ? "not-allowed" : "pointer")};
cursor: ${({ active }) => active !== "true" && "pointer"};
&:hover {
transform: scale(${({ active }) => active !== "true" && "0.99"});
Expand Down

0 comments on commit 26ab023

Please sign in to comment.