From ad28fdc15469b9349ae794f2937e2dc3e6fd64ff Mon Sep 17 00:00:00 2001 From: Mysty Date: Tue, 25 Jul 2023 09:09:28 +1000 Subject: [PATCH] Fix multiple minor CSS issues to fix mobile and tablets --- docs/_static/style.css | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/docs/_static/style.css b/docs/_static/style.css index 9f211a447..01017fbc7 100644 --- a/docs/_static/style.css +++ b/docs/_static/style.css @@ -16,6 +16,10 @@ Historically however, thanks to: box-sizing: border-box; } +section { + word-break: break-word; +} + /* CSS variables would go here */ :root { --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; @@ -216,6 +220,7 @@ body { display: grid; min-height: 100%; grid-auto-rows: min-content auto min-content; + grid-template-columns: minmax(0, 1fr); grid-template-areas: "s" "h" @@ -1046,6 +1051,7 @@ code.xref, a code { span.pre { padding: 0 2px; + white-space: pre-wrap !important; } dl.class { @@ -1211,12 +1217,13 @@ div.code-block-caption { /* desktop stuff */ -@media screen and (min-width: 600px) { +@media screen and (min-width: 768px) { .grid-item { max-width: unset; } .main-grid { + grid-template-columns: repeat(6, 1fr); grid-template-areas: "h h h h h h" "n n n n n n" @@ -1273,6 +1280,7 @@ div.code-block-caption { position: sticky; top: 1em; max-height: calc(100vh - 2em); + max-width: 100%; overflow-y: auto; margin: 1em; } @@ -1322,6 +1330,10 @@ div.code-block-caption { "s s s f f f f f f f f f f f f f" } + #sidebar { + max-width: unset; + } + header > nav { margin-left: 18.75%; margin-right: 18.75%;