8000 Style: Fix unbounded max width causing very wide spans to overflow (#… · ExplodingCabbage/peps@dae03bb · GitHub
[go: up one dir, main page]

Skip to content

Commit dae03bb

Browse files
authored
Style: Fix unbounded max width causing very wide spans to overflow (python#2478)
1 parent 6ccd6bc commit dae03bb

File tree

1 file changed

+2
-2
lines changed
  • pep_sphinx_extensions/pep_theme/static

1 file changed

+2
-2
lines changed

pep_sphinx_extensions/pep_theme/static/mq.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
width: 100%;
5151
}
5252
section#pep-page-section > article {
53-
max-width: 40em;
53+
max-width: 37em;
5454
width: 74%;
5555
float: right;
5656
margin-right: 0;
@@ -69,7 +69,7 @@
6969
}
7070
@media (min-width: 60em) {
7171
section#pep-page-section > article {
72-
max-width: none;
72+
max-width: 56em;
7373
padding-left: 3.2%;
7474
padding-right: 3.2%;
7575
}

0 commit comments

Comments
 (0)
0