We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 280cc88 commit 84bbed7Copy full SHA for 84bbed7
docs/_static/scss/components/defaults/_code.scss
@@ -1,3 +1,5 @@
1
+@use "../../breakpoints" as *;
2
+
3
.rst-content section ul {
4
line-height: auto;
5
}
@@ -48,6 +50,15 @@ code.docutils.literal.notranslate {
48
50
border-radius: 8px;
49
51
background-color: #292d3e;
52
color: #D9E7F3;
53
+ width: min(900px, calc(100vw - 100px));
54
55
+ @media (min-width: $breakpoint-laptop) {
56
+ width: min(900px, calc(100vw - 600px));
57
+ }
58
59
+ @media (min-width: $breakpoint-landscape) {
60
+ width: min(900px, calc(100vw - 400px));
61
62
63
.c1 {
64
color: var(--message-warning);
0 commit comments