diff --git a/docs/assets/css/extra.css b/docs/assets/css/extra.css index 98bbe287e..68d527d31 100644 --- a/docs/assets/css/extra.css +++ b/docs/assets/css/extra.css @@ -74,13 +74,6 @@ color: rgba(0, 0, 0, .54) } -thead tr th:first-child, -tbody tr td:first-child { - width: 10em; - max-width: 10em; - word-break: break-all; -} - tr td:nth-child(1) { background: #dcdce269; } @@ -89,6 +82,11 @@ tr td:nth-child(1) { display: block; } +.md-typeset__table table:not([class]) { + display: table; + width: 100%; +} + .keyword { border-style: dashed; border-radius: 10px; diff --git a/mise.toml b/mise.toml index 847297b49..dd336e1ea 100644 --- a/mise.toml +++ b/mise.toml @@ -1,2 +1,5 @@ [tools] python = "3.11" + +[env] +_.python.venv = { path = ".venv", create = true }