更改memos的css
第一种方案: /* === memos 强制宽屏 === */ /* 干掉所有 Tailwind max-w-* 限制 */ [class*="max-w-"] { max-width: 95vw !important; } /* 取消 mx-auto 居中 */ [class*="mx-auto"] { margin-left: 0 !important; margin-right: 0 !important; } 第二种方案: /* ===== memos 宽屏布局 ===== */ [class*="max-w-"] { max-width: 95vw !important; } [class*="mx-auto"] { margin-left: 0 !important; margin-right: 0 !important; } .memo-content { overflow-x: auto; } .memo-content table { min-width: 100%; white-space: nowrap; } 第三种方案: #root [class*="max-w-"] { max-width: 95vw !important; } #root [class*="mx-auto"] { margin-left: 0 !important; margin-right: 0 !important; } 最终方案: /* ===== memos 宽屏布局(稳定方案) ===== */ /* 放宽 Tailwind 写作容器 */ [class*="max-w-"] { max-width: 96vw !important; } /* 取消居中,保留一点边距更耐看 */ [class*="mx-auto"] { margin-left: 12px !impo...