fix: dark mode manual table
Some checks failed
Spell Check / Spell Check with Typos (push) Failing after 8s

This commit is contained in:
Methapon2001 2025-04-25 17:00:16 +07:00
parent a0b7fb3a1b
commit 84d3e0d777

View file

@ -339,12 +339,12 @@ async function scrollTo(id: string) {
} }
.markdown :deep(:where(table th)) { .markdown :deep(:where(table th)) {
background: #f3f3f7; background: var(--surface-2);
border: 1px solid #e1e1e8; border: 1px solid var(--border-color);
} }
.markdown :deep(:where(table td, table th)) { .markdown :deep(:where(table td, table th)) {
border: 1px solid #e1e1e8; border: 1px solid var(--border-color);
padding: 0.25rem 1rem; padding: 0.25rem 1rem;
} }
</style> </style>