fix(docs): contenu factuel — couverture Europe uniquement (pas 'planet'), vintage mi-août 2026, disclaimer 'à titre indicatif, non garanti à 100 % (surtout en ville)', suppression des mentions hebdomadaire non fondées ; fix overflow mobile docs (flex column stretch + table/pre scroll).

This commit is contained in:
riricdev 2026-09-07 15:55:12 +02:00
commit 4279eb0f6d
3 changed files with 38 additions and 9 deletions

View file

@ -107,10 +107,29 @@
@media (max-width: 760px) {
.docs-wrap {
flex-direction: column;
align-items: stretch;
}
.docs-side {
position: static;
flex: auto;
flex: none;
width: 100%;
}
.docs-body {
flex: none;
width: 100%;
min-width: 0;
}
.docs-body pre {
max-width: 100%;
}
.docs-body table {
display: block;
width: 100%;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
.docs-body :not(pre) > code {
overflow-wrap: anywhere;
}
}