From f13e549fab8032254f59e9d622619dcf4f49b011 Mon Sep 17 00:00:00 2001 From: Connor Clark Date: Mon, 24 Jun 2019 17:47:37 -0700 Subject: [PATCH] clients(devtools): unset overflow in print (#9274) --- lighthouse-core/report/html/report-styles.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lighthouse-core/report/html/report-styles.css b/lighthouse-core/report/html/report-styles.css index 8f0f3208dcd0..250598acb329 100644 --- a/lighthouse-core/report/html/report-styles.css +++ b/lighthouse-core/report/html/report-styles.css @@ -263,6 +263,11 @@ overflow-y: scroll; height: calc(100% - var(--topbar-height)); } +@media print { + .lh-devtools .lh-container { + overflow: unset; + } +} .lh-devtools .lh-sticky-header { /* This is normally the height of the topbar, but we want it to stick to the top of our scroll container .lh-container` */ top: 0;