Skip to content

Commit

Permalink
Fix CSS of the jupyterlab extension to allow scrolling
Browse files Browse the repository at this point in the history
  • Loading branch information
cmd-ntrf committed Mar 28, 2023
1 parent 4a00cf9 commit 5453398
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions jupyterlab/style/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,27 @@
/* This is needed so that all font sizing of children done in ems is
* relative to this base size */
font-size: var(--jp-ui-font-size1);
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}

.jp-Lmod-content {
background-color: var(--jp-layout-color1);
flex: 1 1 auto;
margin: 0;
padding: 0;
min-height: 0;
overflow: auto;
list-style-type: none;
}

.jp-Lmod-search {
padding: 4px;
background-color: var(--jp-layout-color1);
z-index: 2;
flex: 0 0 auto;
}

.jp-Lmod-search-wrapper {
Expand Down

0 comments on commit 5453398

Please sign in to comment.