💄 Style: hide scrollbar in print media (#594)

Make sure that the scrollbar will not appear in the printed PDF
确保打印出的 PDF 中没有 scrollbar
This commit is contained in:
ych817
2025-04-29 13:43:06 +12:00
committed by GitHub
parent e663ebbd45
commit 0cf0d4f4e7
+17
View File
@@ -128,6 +128,23 @@
}
@media only print {
// 确保打印时没有 scrollbar
:root {
--fi-scrollbar-width: none !important;
}
*::-webkit-scrollbar {
display: none !important;
width: 0 !important;
height: 0 !important;
}
.scrollbar-thin {
scrollbar-width: none !important;
-ms-overflow-style: none !important;
}
@page {
size: A4 portrait;
margin: 1.27cm;