ttrpg-tools/src/styles.css

23 lines
369 B
CSS
Raw Normal View History

2026-02-26 00:17:23 +08:00
@import "tailwindcss";
@plugin "@tailwindcss/typography";
2026-02-27 16:02:53 +08:00
/* 打印样式 */
@media print {
body {
visibility: hidden;
}
body .in-print {
visibility: visible;
-webkit-print-color-adjust: exact !important;
print-color-adjust: exact !important;
2026-02-27 16:32:45 +08:00
position: absolute;
top: 0;
left: 0;
2026-02-27 16:02:53 +08:00
}
@page {
size: A4;
margin: 0;
}
}