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

Merge pull request #2512 from nagledb/fix-print-scroll-past-end

Prevent empty printed page with scroll-past-end
This commit is contained in:
Junyoung Choi (Sai)
2018-10-23 17:20:35 +09:00
committed by GitHub

View File

@@ -87,6 +87,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);