Browse Source

Fix the new output view extending below the panel.

This is a bit kludgy, but we’ll take care of it consistently in the work on the main area widget.
Jason Grout 7 years ago
parent
commit
d2f380ee30
1 changed files with 2 additions and 2 deletions
  1. 2 2
      packages/notebook/style/index.css

+ 2 - 2
packages/notebook/style/index.css

@@ -285,12 +285,12 @@
 }
 
 .jp-LinkedOutputView .jp-OutputArea {
-  height: 100%;
+  height: calc(100% - var(--jp-toolbar-micro-height));
   display: block;
 }
 
 .jp-LinkedOutputView .jp-OutputArea-child:only-child {
-  height: 100%;
+  height: calc(100% - var(--jp-toolbar-micro-height));
 }
 
 .jp-LinkedOutputView-toolbar {