We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 545c8a5 + b4d0a4b commit 1408182Copy full SHA for 1408182
components/DefaultLayout.tsx
@@ -85,7 +85,12 @@ export const DefaultLayout = (props: Props) => {
85
Skip to main content
86
</a>
87
<SidebarNav />
88
- <div className="flex-column flex-1 overflow-auto">
+ {/* Need to set an explicit height for sticky elements since we also
89
+ set overflow to auto */}
90
+ <div
91
+ className="flex-column flex-1 overflow-auto print-overflow-visible"
92
+ style={{ height: '100vh' }}
93
+ >
94
<Header />
95
<main id="main-content">
96
<DeprecationBanner />
stylesheets/utilities.scss
@@ -24,6 +24,10 @@
24
.no-print {
25
display: none;
26
}
27
+
28
+ .print-overflow-visible {
29
+ overflow: visible !important;
30
+ }
31
32
33
/* Opacity utilities
0 commit comments