Skip to content

Commit 7c123a8

Browse files
authoredOct 3, 2022
Merge pull request #6550 from hawkeyes21/main
Fix: No mouse pointer when hovering on the Jupyter icon
2 parents 7364633 + 3d88342 commit 7c123a8

File tree

1 file changed

+2
-1
lines changed
  • packages/application-extension/src

1 file changed

+2
-1
lines changed
 

‎packages/application-extension/src/index.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,8 @@ const logo: JupyterFrontEndPlugin<void> = {
138138
elementPosition: 'center',
139139
padding: '2px 2px 2px 8px',
140140
height: '28px',
141-
width: 'auto'
141+
width: 'auto',
142+
cursor: 'pointer'
142143
});
143144
logo.id = 'jp-NotebookLogo';
144145
app.shell.add(logo, 'top', { rank: 0 });

0 commit comments

Comments
 (0)
Please sign in to comment.