Changing the mouse cursor on Canva's React Flow
This commit is contained in:
parent
2b716fb981
commit
9e4f898f54
1 changed files with 8 additions and 0 deletions
|
|
@ -15,3 +15,11 @@ code {
|
|||
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
|
||||
monospace;
|
||||
}
|
||||
|
||||
/*
|
||||
The style below sets the cursor property of the element with the class .react-flow__pane to the default cursor.
|
||||
The cursor: default; property value restores the browser's default cursor style for the targeted element. By applying this style, the element will no longer have a custom cursor appearance such as "grab" or any other custom cursor defined elsewhere in the application. Instead, it will revert to the default cursor style determined by the browser, typically an arrow-shaped cursor.
|
||||
*/
|
||||
.react-flow__pane{
|
||||
cursor: default;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue