| 12345678910111213141516171819202122232425262728293031 |
- // 导入全局样式变量
- @import '@/styles/variables.scss';';
- // ===== 修订工具 Drawer 样式 =====
- // 说明:只定义页面特定的样式
- // 加载容器
- .ant-spin-nested-loading {
- height: 100% !important;
- }
- // PDF 页面样式
- .pdf-page {
- width: 100% !important;
- canvas {
- width: 100% !important;
- height: auto !important;
- }
- }
- .pdf-page-wrapper {
- width: 100%;
- }
- // PDF 占位符 - 使用全局背景色
- .pdf-page-placeholder {
- width: 100%;
- aspect-ratio: 1 / 1.3;
- background: @bg-tertiary; // 使用全局变量
- }
|