Fix unnecessary horizontal scrolling of tables in Japanese

This commit is contained in:
mDuo13
2025-08-18 12:09:43 -07:00
committed by akcodez
parent 7d1a8b7556
commit f502713c7a

View File

@@ -272,6 +272,14 @@ ul.nav.navbar-nav {
color: var(--text-color);
}
/* Fix unnecessary horizontal scrolling of tables in Japanese */
[lang="ja"] table.md {
word-break: break-word;
}
[lang="ja"] table.md th {
min-width: 7em;
}
[data-component-name="Search/SearchTrigger"] > div {
justify-content: start;
width: 100%;