Skip to content

Commit

Permalink
Fix CSS for full windowing mode
Browse files Browse the repository at this point in the history
  • Loading branch information
jtpio committed Apr 17, 2024
1 parent ad0e1b0 commit 25cda3c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/notebook-extension/style/base.css
Expand Up @@ -24,13 +24,14 @@ body[data-notebook='notebooks'] .jp-NotebookPanel-toolbar {
}

body[data-notebook='notebooks'] .jp-WindowedPanel-outer {
width: unset !important;
padding-top: unset;
padding-left: calc(calc(100% - var(--jp-notebook-max-width)) * 0.5);
padding-right: calc(
calc(
100% - var(--jp-notebook-max-width) - var(--jp-notebook-padding-offset)
) * 0.5
);
) !important;
background: var(--jp-layout-color2);
}

Expand Down

0 comments on commit 25cda3c

Please sign in to comment.