21 lines
367 B
CSS
21 lines
367 B
CSS
@import "tailwindcss";
|
|
@plugin "@tailwindcss/typography";
|
|
|
|
/* 打印样式 */
|
|
@media print {
|
|
body {
|
|
visibility: hidden;
|
|
}
|
|
|
|
article > div > *:nth-child(1) {
|
|
margin-top: 0;
|
|
}
|
|
|
|
body .print-root {
|
|
visibility: visible;
|
|
-webkit-print-color-adjust: exact !important;
|
|
print-color-adjust: exact !important;
|
|
width: 100vw;
|
|
gap: 0;
|
|
}
|
|
} |