1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 09:46:22 +00:00

Prevent empty printed page with scroll-past-end

This commit is contained in:
David Nagle
2018-10-19 14:29:48 -07:00
parent ff3026686f
commit 73d1bdf84b

View File

@@ -88,6 +88,11 @@ body {
font-size: ${fontSize}px;
${scrollPastEnd && 'padding-bottom: 90vh;'}
}
@media print {
body {
padding-bottom: initial;
}
}
code {
font-family: '${codeBlockFontFamily.join("','")}';
background-color: rgba(0,0,0,0.04);