| @tailwind base; | |
| @tailwind components; | |
| @tailwind utilities; | |
| @layer base { | |
| body { | |
| @apply bg-office-bg text-office-text font-sans m-0 p-0 h-screen overflow-hidden; | |
| } | |
| /* Ẩn thanh cuộn nhưng vẫn cho phép cuộn */ | |
| .hide-scrollbar { | |
| -ms-overflow-style: none; /* IE and Edge */ | |
| scrollbar-width: none; /* Firefox */ | |
| } | |
| .hide-scrollbar::-webkit-scrollbar { | |
| display: none; | |
| } | |
| } | |
| @media print { | |
| /* Ẩn các thành phần UI thừa hoàn toàn khỏi luồng layout */ | |
| header, aside, footer, button, .fixed { | |
| display: none ; | |
| } | |
| /* Reset lại toàn bộ khung layout (h-screen, overflow-hidden) để tài liệu chảy liền mạch */ | |
| body, html, #app, | |
| #app > div, | |
| #app > div > div, | |
| main, | |
| #scroll-area { | |
| display: block ; | |
| height: auto ; | |
| min-height: auto ; | |
| overflow: visible ; | |
| position: static ; | |
| padding: 0 ; | |
| margin: 0 ; | |
| background: white ; | |
| } | |
| #main-editor { | |
| width: 210mm ; /* Kích thước A4 chuẩn */ | |
| margin: 0 ; | |
| border: none ; | |
| box-shadow: none ; | |
| background: transparent ; | |
| zoom: 1 ; /* Hủy zoom của giao diện web để in đúng tỷ lệ */ | |
| } | |
| /* Ngắt trang thông minh */ | |
| h1, h2, h3, h4, h5, h6 { | |
| page-break-after: avoid; | |
| break-after: avoid; | |
| } | |
| table, img, .katex-display { | |
| page-break-inside: avoid; | |
| break-inside: avoid; | |
| } | |
| @page { | |
| size: A4; | |
| margin: 0mm; /* Tắt header/footer mặc định của trình duyệt */ | |
| } | |
| } | |