Merge pull request #22557 from overleaf/td-bs5-pdf-detach-height

Copy some <html> and <body> rules from BS3 to fix the detached PDF page

GitOrigin-RevId: 9c14bd4988811b857c8c3516e50589514b400ac1
This commit is contained in:
Tim Down
2024-12-18 09:05:31 +00:00
committed by Copybot
parent 8417267075
commit 053b84d828
@@ -1,5 +1,17 @@
html {
height: 100%;
}
// Prevent potential for layout shifts on a page with fixed 100% height. This
// can happen, for example, with the Grammarly extension in Firefox.
html.fixed-size-document {
position: fixed;
width: 100%;
}
body {
position: relative;
min-height: 100%;
}
.content {